to-digits
v1.2.1
Published
Converts a number to an array of its digits
Downloads
2
Maintainers
Readme
to-digits
Converts a number to an array of its digits.
Install
$ npm install to-digits
var toDigits = require('to-digits');
Usage
toDigits(number)
toDigits(7654); // [7, 6, 5, 4]
toDigits.extend
Use this to extend the native Number.prototype:
Number.prototype.toDigits = toDigits.extend
console.log((456).toDigits()) // [4, 5, 6]