0.0.4 • Published 9 years ago

add-commas v0.0.4

Weekly downloads
2,271
License
MIT
Repository
github
Last release
9 years ago

add-commas

Add commas to a number

Credit

Core logic adapted from this thread on Stack Overflow

Usage

var addCommas = require('add-commas');

// yes
addCommas(12345);   // 12,345
addCommas('12345'); // 12,345

// no
addCommas();        // throws Error
addCommas(123.45)   // throws Error
addCommas('dogs')   // throws Error

License

Go nuts.

0.0.4

9 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago