notomath
v1.0.5
Published
A test package with simple math operations.
Readme
A test package with simple math operations.
Installation
npm install notomathUsage
Addition:
const ans = add(1, 1)
console.log(ans) // 2Subtraction:
const ans = sub(5, 2)
console.log(ans) // 3Multiplication:
const ans = mul(2, 3)
console.log(ans) // 6Division:
const ans = div(8, 2)
console.log(ans) // 4