@karanh15/fmh-operations
v1.0.9
Published
Package for performing arithmetic operations
Downloads
369
Readme
operations
Package for performing arithmetic operations
Sample Code
test.js
import { evaluate, round } from '@karanh15/operations'
console.log(evaluate(1, 2, 'ADDITION', null ,'MY'))
console.log(evaluate(1, 2, 'ADDITION', 2))
console.log(round(2.343, null, 'MY'))
console.log(round(2.343, 2, 'MY'))
node --experimental-specifier-resolution=node test.js