Package Exports
- zero-fill
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (zero-fill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
zero-fill

Zero-fill a number to the given size.
install
npm install zero-fill
usage
var zeroFill = require('zero-fill')
zeroFill(4, 1) // '0001'
zeroFill(10, 55) // '0000000055'
zeroFill(1, 1) // '1'
Partial application:
zeroFill(4)(1) // '0001'
Custom padding character:
zeroFill(4, 55, ' ') // ' 55'
zeroFill(4, 500, ' ') // ' 500'
license
MIT. Copyright (c) Feross Aboukhadijeh.