3.0.1 • Published 5 months ago

big-factorial v3.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 months ago

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.

3.0.1

5 months ago

3.0.0

8 months ago

2.0.0

1 year ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

10 years ago

1.0.1

11 years ago

1.0.0

11 years ago