1.1.1 • Published 1 year ago

yaam v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

yaam - Yet Another Arithmetics Module

Calculates arithmetic expressions without using eval().

import {calculate, tryCalculate} from 'yaam'

calculate("2 ^ 3 * (4 + 5)") // => 72
calculate("foo") // ERROR

tryCalculate("2.5 % 2") // => 0.5
tryCalculate("foo") // null
tryCalculate("foo", { verbose: true }) // null, but logs to console