UNPKG

cf-left-pad

Version:

String left pad

25 lines (16 loc) 237 B
## cf-left-pad String left pad. ## Install ```bash $ npm install cf-left-pad ``` ## Usage ```js leftpad = require('cf-left-pad') leftpad('foo', 5) // => " foo" leftpad('foobar', 6) // => "foobar" leftpad(1, 2, 0) // => "01" ```