bigjs-adapter
Advanced tools
Comparing version 2.0.1 to 2.0.2
{ | ||
"name": "bigjs-adapter", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "big.js adapter for linear-arbitrary-precision", | ||
@@ -5,0 +5,0 @@ "main": "src/bigjs-adapter.js", |
@@ -29,20 +29,20 @@ /*jshint node:true */ | ||
function plus(big, x) { | ||
return big.plus(x); | ||
function plus(x, y) { | ||
return x.plus(y); | ||
} | ||
function minus(big, x) { | ||
return big.minus(x); | ||
function minus(x, y) { | ||
return x.minus(y); | ||
} | ||
function times(big, x) { | ||
return big.times(x); | ||
function times(x, y) { | ||
return x.times(y); | ||
} | ||
function div(big, x) { | ||
return big.div(x); | ||
function div(x, y) { | ||
return x.div(y); | ||
} | ||
function toString(big) { | ||
return big.toString(); | ||
function toString(x) { | ||
return x.toString(); | ||
} |
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
7496