Created
March 4, 2018 18:21
-
-
Save rickhanlonii/49709d973a8ac680c94290c8fee471a5 to your computer and use it in GitHub Desktop.
Mock math.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
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