0.0.4 • Published 8 years ago

pad-number v0.0.4

Weekly downloads
772
License
MIT
Repository
github
Last release
8 years ago

pad-number

Convert a number to a string with n leading zeroes.

Using @Pointy's answer on Stackoverflow.

Installation

$ npm install pad-number

API

var pad = require('pad-number');

console.log(pad(10, 4)); // '0010'

console.log(pad(10, 5)); // '00010'

console.log(pad(10, 1)); // '10'

// Optional padding character:
console.log(pad(10, 5, '-')); // '---10'

License

MIT