Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 375 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 375 Bytes

commafy

Add commas to a number.

Install

npm install commafy

Usage

var commafy = require('commafy')

console.log(commafy(1000000)) // '1,000,000'
console.log(commafy(1000)) // '1,000'
console.log(commafy(1000.123)) // '1,000.123'
console.log(commafy(100)) // '100'
console.log(commafy(1e4)) // '10,000'

License

MIT