cf-left-pad
v0.0.25
Published
String left pad
Downloads
113
Maintainers
Readme
cf-left-pad
String left pad.
Install
$ npm install cf-left-pad
Usage
leftpad = require('cf-left-pad')
leftpad('foo', 5)
// => " foo"
leftpad('foobar', 6)
// => "foobar"
leftpad(1, 2, 0)
// => "01"