string-calculate
v0.0.2
Published
The package allows to calculate mathematical expressions written as a string
Readme
Description
The package allows to calculate mathematical expressions written as a string.
How to use
import { stringCalculator } from "string-calculate";
const value = stringCalculator.parse("2 + 10/2") // 7;
const value = stringCalculator.parse("1 + 3/2 * 3") // 5.5;