![]() |
пре 3 година | |
---|---|---|
.. | ||
examples | пре 3 година | |
.npmignore | пре 3 година | |
README.md | пре 3 година | |
package.json | пре 3 година | |
rightpad.js | пре 3 година |
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...