# 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

```