|
|
před 3 roky | |
|---|---|---|
| .. | ||
| examples | před 3 roky | |
| .npmignore | před 3 roky | |
| README.md | před 3 roky | |
| package.json | před 3 roky | |
| rightpad.js | před 3 roky | |
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...