UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

12 lines (9 loc) 284 B
# 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 ```javascript var rightpad = require('right-pad'); rightpad('hello world', 14, '.'); // => hello world... ```