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

bigjs-adapter

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bigjs-adapter - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

2

package.json
{
"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();
}
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