jack e1a2621c78 update hace 2 años
..
examples e1a2621c78 update hace 2 años
.npmignore e1a2621c78 update hace 2 años
README.md e1a2621c78 update hace 2 años
package.json e1a2621c78 update hace 2 años
rightpad.js e1a2621c78 update hace 2 años

README.md

Right Pad

Right Pad adds a "padding" to the right side of the string with the character of your choice or just blank space.

Install

$ npm install right-pad

Usage

var rightpad = require('right-pad');
rightpad('hello world', 14, '.'); // => hello world...