Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 599 Bytes

File metadata and controls

45 lines (32 loc) · 599 Bytes

{%= name %} {%= badge("fury") %}

{%= description %}

{%= include("install-npm", {save: true}) %}

Run tests

npm test

Usage

var pad = require('{%= name %}');
pad('abc', 5)
// 'abc00'
pad('abc', 10)
// 'abc0000000'
pad('abc', 10, '~')
// 'abc~~~~~~~'
pad('abc', 10, ' ')
// 'abc       '

Related

{%= related(verb.related.list, {remove: name}) %}

Running tests

{%= include("tests") %}

Contributing

{%= include("contributing") %}

Author

{%= include("author") %}

License

{%= copyright({year: 2014}) %} {%= license() %}


{%= include("footer") %}