calculate-pkg-zzc
v1.0.2
Published
A simple calculator package to calculate four operation expressions.
Downloads
2
Readme
六、NPM开发
封装一个私有的 npm 包,实现整数四则混合运算(含括号)公式的解析执行。
- 可直接在 node 环境中安装
npm install calculate-pkg-zzc
- 使用方式举例
const calculate = require('calculate-pkg-zzc');
const input = {
formula: '(x+y)*z+3*6/x',
data: {
x: 0.1,
y: 0.2,
z: 1
}
};
console.log(calculate.parseAndExecute(input));