![]() |
hace 2 años | |
---|---|---|
.. | ||
examples | hace 2 años | |
.npmignore | hace 2 años | |
README.md | hace 2 años | |
package.json | hace 2 años | |
rightpad.js | hace 2 años |
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...