Comparing version 0.0.5 to 0.0.17
@@ -1,7 +0,7 @@ | ||
declare namespace a_calc { | ||
export function calc (...args: any): string; | ||
export function calc (...args: any): string; | ||
export function fmt (...args: any): string; | ||
} | ||
export function fmt (...args: any): string; | ||
export default a_calc; | ||
export const version: string; | ||
{ | ||
"name": "a-calc", | ||
"version": "0.0.5", | ||
"version": "0.0.17", | ||
"description": "JavaScript的字符串四则运算库, 支持格式化操作例如: 千分位格式化, 灵活指定小数点位数", | ||
"main": "./dist/calc.js", | ||
"main": "./es/index.js", | ||
"exports": { | ||
".": { | ||
"import": "./es/index.js", | ||
"require": "./cjs/index.js" | ||
}, | ||
"./es": { | ||
"import": "./es/index.js", | ||
"default": "./es/index.js" | ||
}, | ||
"./cjs": { | ||
"require": "./cjs/index.js", | ||
"default": "./cjs/index.js" | ||
} | ||
}, | ||
"browser": "./browser/index.js", | ||
"module": "./es/index.js", | ||
"typings": "./calc.d.ts", | ||
"scripts": { | ||
"build": "webpack --watch" | ||
"dev": "rollup -c -w --environment build:dev", | ||
"build": "rollup -c -w --environment build:build", | ||
"test": "cross-env ava" | ||
}, | ||
"files": [ | ||
"example", | ||
"dist", | ||
"es", | ||
"cjs", | ||
"browser", | ||
"calc.d.ts" | ||
@@ -32,9 +52,18 @@ ], | ||
"homepage": "https://github.com/Autumn-one/a-calc#readme", | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^22.0.0", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@rollup/plugin-node-resolve": "^13.2.1", | ||
"ava": "^4.2.0", | ||
"cross-env": "^7.0.3", | ||
"glob": "^8.0.1", | ||
"npm-run-all": "^4.1.5", | ||
"rollup": "^2.70.2", | ||
"rollup-plugin-livereload": "^2.0.5", | ||
"rollup-plugin-serve": "^1.1.0", | ||
"rollup-plugin-terser": "^7.0.2" | ||
}, | ||
"dependencies": { | ||
"numbro": "^2.3.6" | ||
}, | ||
"devDependencies": { | ||
"webpack": "^5.69.1", | ||
"webpack-cli": "^4.9.2" | ||
"decimal.js": "^10.3.1" | ||
} | ||
} |
@@ -25,5 +25,3 @@ # a-calc | ||
```js | ||
import a_calc from "a-calc" | ||
const {calc, fmt} = a_calc | ||
import {calc, fmt} from "a-calc" | ||
``` | ||
@@ -34,4 +32,3 @@ | ||
```html | ||
<script src="node_modules/numbro/dist/numbro.js"></script> | ||
<script src="node_modules/a-calc/dist/calc.js"></script> | ||
<script src="node_modules/a-calc/browser/index.js"></script> | ||
<script> | ||
@@ -49,6 +46,13 @@ const {calc, fmt} = a_calc | ||
// 复杂一点的计算 | ||
calc("0.1 + 0.2 * 0.3 / 0.4 * (0.5 + 0.6)") // 0.265 | ||
``` | ||
**Fill and calculate(填充变量并计算)** | ||
```js | ||
let a = 0.000001 | ||
let b = 888.789 | ||
calc("a + b", {a,b}) // 0.000001 + 888.789 = 888.789001 | ||
``` | ||
@@ -92,3 +96,3 @@ ## Calculate & Format (计算并格式化) | ||
https://www.bilibili.com/video/BV17R4y1G7DS?from=search&seid=11611588186602414425&spm_id_from=333.337.0.0 | ||
待定 | ||
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unpublished package
Supply chain riskPackage version was not found on the registry. It may exist on a different registry and need to be configured to pull from that registry.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
12
3
95
0
53505
11
197
1
+ Addeddecimal.js@^10.3.1
+ Addeddecimal.js@10.4.3(transitive)
- Removednumbro@^2.3.6
- Removedbignumber.js@9.1.2(transitive)
- Removednumbro@2.5.0(transitive)