Created
March 4, 2018 18:22
-
-
Save rickhanlonii/b1133ae01d661250caf36377d816f0b5 to your computer and use it in GitHub Desktop.
Mock app.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as math from './math.js'; | |
export const doAdd = (a, b) => math.add(a, b); | |
export const doSubtract = (a, b) => math.subtract(a, b); | |
export const doMultiply = (a, b) => math.multiply(a, b); | |
export const doDivide = (a, b) => math.divide(a, b); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment