jack e1a2621c78 update 2 gadi atpakaļ
..
examples e1a2621c78 update 2 gadi atpakaļ
.npmignore e1a2621c78 update 2 gadi atpakaļ
README.md e1a2621c78 update 2 gadi atpakaļ
package.json e1a2621c78 update 2 gadi atpakaļ
rightpad.js e1a2621c78 update 2 gadi atpakaļ

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...