Skip to content

Instantly share code, notes, and snippets.

@rickhanlonii
Created March 4, 2018 18:22
Show Gist options
  • Save rickhanlonii/b1133ae01d661250caf36377d816f0b5 to your computer and use it in GitHub Desktop.
Save rickhanlonii/b1133ae01d661250caf36377d816f0b5 to your computer and use it in GitHub Desktop.
Mock app.js
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