calculate-asmd
Advanced tools
Comparing version 2.3.2 to 2.3.3
{ | ||
"name": "calculate-asmd", | ||
"version": "2.3.2", | ||
"version": "2.3.3", | ||
"description": "The precise addition, subtraction, multiplication and division of JavaScript avoids the error of floating point calculation", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -1,5 +0,5 @@ | ||
export const scaleNum: (number: number, position: number) => number | ||
export const add: (arg1: number, arg2: number) => number | ||
export const sub: (arg1: number, arg2: number) => number | ||
export const mul: (arg1: number, arg2: number) => number | ||
export const div: (arg1: number, arg2: number) => number | ||
export const scaleNum: (Num: number | string, position: number | string) => number | ||
export const add: (arg1: number | string, arg2: number | string) => number | ||
export const sub: (arg1: number | string, arg2: number | string) => number | ||
export const mul: (arg1: number | string, arg2: number | string) => number | ||
export const div: (arg1: number | string, arg2: number | string) => number |
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
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
17061