Skip to content

Instantly share code, notes, and snippets.

@rickhanlonii
Created March 4, 2018 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rickhanlonii/49709d973a8ac680c94290c8fee471a5 to your computer and use it in GitHub Desktop.
Save rickhanlonii/49709d973a8ac680c94290c8fee471a5 to your computer and use it in GitHub Desktop.
Mock math.js
export const add = (a, b) => a + b;
export const subtract = (a, b) => b - a;
export const multiply = (a, b) => a * b;
export const divide = (a, b) => b / a;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment