Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

a-calc

Package Overview
Dependencies
Maintainers
1
Versions
161
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

a-calc - npm Package Compare versions

Comparing version 0.0.5 to 0.0.26

browser/index.core.js

10

calc.d.ts

@@ -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.26",
"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 --environment build:build",
"build:w": "rollup -c -w --environment build:build",
"test": "cross-env ava"
},
"files": [
"example",
"dist",
"es",
"cjs",
"browser",
"calc.d.ts"

@@ -32,9 +53,22 @@ ],

"homepage": "https://github.com/Autumn-one/a-calc#readme",
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@rollup/plugin-babel": "^5.3.1",
"@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",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"numbro": "^2.3.6"
},
"devDependencies": {
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
"@babel/core": "^7.17.10",
"decimal.js": "^10.3.1"
}
}

@@ -6,3 +6,7 @@ # a-calc

> 支持的运算符: + - * / %
> Supported operators(支持的运算符): + - * /
>
> If you have any questions, please send email to 718879459@qq.com as soon as possible to give me feedback
>
> (如果遇到了什么问题, 请第一时间向我发送反馈邮件, 718879459@qq.com 对于bug我会第一时间修复他)

@@ -26,5 +30,3 @@ ## Install(安装)

```js
import a_calc from "a-calc"
const {calc, fmt} = a_calc
import {calc, fmt} from "a-calc"
```

@@ -35,4 +37,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>

@@ -50,6 +51,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
```

@@ -93,3 +101,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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc