New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

big-mul

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

big-mul

multiply array represented of big numbers

1.0.1
latest
Source
npm
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Big Mul License NPM version Dependency Status Build Status

Multiply array representation of big numbers using BigInt where possible or Fürer's algorithm.

Install

npm i big-mul --save

How to use?

const bigMul = require('big-mul');

bigMul([1, 2, 3, 4, 5, 6, 7, 8, 9], [1, 2, 3, 4, 5, 6, 7, 8, 9])
// returns
[ 1, 5, 2, 4, 1, 5, 7, 8, 7, 5, 0, 1, 9, 0, 5, 2, 1 ]

Environments

In old node.js environments that not fully supports es2015, big-mul could be used with:

var bigSum = require('big-mul/legacy');
  • big-sum - sum array representation of big numbers
  • big-wrap - wrap array representation of big numbers

License

MIT

Keywords

big

FAQs

Package last updated on 30 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts