
# NumberNamer

Names numbers up to 10e30000 using the Conway-Guy system.




### nameNumber(zeros)
```js
const NN = reqiure('NumberNamer');

const zeros = 30000; // Amount of zeros
console.log(NN.nameNumber(zeros)); // "Novenonagintanongentinonillillion"
```
I'm not exactly sure what all you would use this for, but here you go.
