to-digits

1.2.1 • Public • Published

to-digits

NPM Version Build Status

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]

Package Sidebar

Install

npm i to-digits

Weekly Downloads

1

Version

1.2.1

License

ISC

Last publish

Collaborators

  • dsernst