Named Exports

by Jacob King

JavaScript

// math.js
export const add = (a, b) => a + b;
export const subtract = (a, b) => a - b;