bigjs-adapter
Advanced tools
Comparing version 2.4.0 to 2.4.2
{ | ||
"name": "bigjs-adapter", | ||
"version": "2.4.0", | ||
"version": "2.4.2", | ||
"description": "big.js adapter for linear-arbitrary-precision", | ||
@@ -30,3 +30,3 @@ "main": "src/bigjs-adapter.js", | ||
"rimraf": "^2.4.3", | ||
"should": "^7.1.1" | ||
"should": "^8.0.1" | ||
}, | ||
@@ -33,0 +33,0 @@ "dependencies": { |
@@ -92,9 +92,9 @@ /*jshint node:true, mocha:true */ | ||
var decimalThird = new Decimal40('1').div(new Decimal('3')); | ||
var stringified = JSON.stringify([decimalThird]); | ||
var stringified = JSON.stringify(decimalThird); | ||
stringified.should.be.exactly('["0.3333333333333333333333333333333333333333"]'); | ||
stringified.should.be.exactly('"0.3333333333333333333333333333333333333333"'); | ||
JSON.parse(stringified, Decimal40.JSONReviver)[0].should.eql(decimalThird); | ||
JSON.parse(stringified, Decimal40.reviver).should.eql(decimalThird); | ||
}); | ||
}); | ||
}); |
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
8452