mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-17 15:53:38 -05:00
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...