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

bn.js

Package Overview
Dependencies
Maintainers
1
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bn.js - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

4

lib/bn.js

@@ -158,4 +158,4 @@ var assert = require('assert');

while (c.cmp(0) !== 0) {
var r = c.mod(1000000);
c = c.div(1000000);
var r = c.mod(10000000);
c = c.div(10000000);
assert.equal(r.length, 1);

@@ -162,0 +162,0 @@ if (c.cmp(0) !== 0)

{
"name": "bn.js",
"version": "0.1.1",
"version": "0.1.2",
"description": "Big number implementation in pure javascript",

@@ -5,0 +5,0 @@ "main": "lib/bn.js",

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