UNPKG

full-accuracy

Version:

This library helps you get the full length of a factorial, without the floating point inaccuracy messing with it

17 lines (12 loc) 262 B
# Full-Accuracy Get the full representation of the factorials of large numbers. # Install ``` npm install full-accuracy ``` # Usage ```js const accuracy = require('full-accuracy'); const for30 = accuracy(30); // returns 265252859812191058636308480000000 ```