UNPKG

@chasecoding/easyfunctions

Version:

Some easy functions to show how to create an npm package and post it to the NPM Registry

19 lines (15 loc) 290 B
// Functions for the math package export default class Math { twoMultiply(a, b){ return a * b } twoDivide(a, b){ return a / b } twoAdd(a, b){ return a + b } twoSubtract(a, b){ return a - b } }