a-calc 0.0.56 → 0.0.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -62,7 +62,7 @@ calc("a * (b + c) % d + 7.123", [
62
62
 
63
63
  // 复杂一点的
64
64
  calc("1 + o.a / arr[0].d",
65
- {
65
+ {
66
66
  o: { a: 2 },
67
67
  arr: [{ d: 8 }]
68
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-calc",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "JavaScript的字符串四则运算库, 支持格式化操作例如: 千分位格式化, 灵活指定小数点位数",
5
5
  "main": "./cjs/index.js",
6
6
  "exports": {