jack e1a2621c78 update | 2 rokov pred | |
---|---|---|
.. | ||
examples | 2 rokov pred | |
.npmignore | 2 rokov pred | |
README.md | 2 rokov pred | |
package.json | 2 rokov pred | |
rightpad.js | 2 rokov pred |
Right Pad adds a "padding" to the right side of the string with the character of your choice or just blank space.
$ npm install right-pad
var rightpad = require('right-pad');
rightpad('hello world', 14, '.'); // => hello world...