big-factorial

3.0.1 • Public • Published

big-factorial

Like factorial but for big numbers. Inspired by a blog post by Reginald Braithwaite (@raganwald).

Example

If you want to find the factorial of an integer less than 171, then you don't need this module. Otherwise, you do need it:

var factorial = require('factorial');

factorial(170);
// => 7.257415615307994e+306

factorial(171);
// => Infinity

factorial(32768);
// => RangeError: Maximum call stack size exceeded

The Infinity problem is a result of JavaScript's limit on how big numbers can be. This module solves this problem by using big-integer.

The RangeError is a problem with how the factorial is calculated. The recursion used goes so deep that it exceeds the limit that Node.js has. As described in Reginald's blog post, this problem is solved by using trampolines.

Installation

$ npm install big-factorial

API

var bigFactorial = require('big-factorial');

bigFactorial(value)

Returns the factorial of value as a bigInt, where value is either a Number or a String.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.0.1
    1
    • latest

Version History

Package Sidebar

Install

npm i big-factorial

Weekly Downloads

2

Version

3.0.1

License

MIT

Unpacked Size

7.58 kB

Total Files

12

Last publish

Collaborators

  • kenan