1.0.2 • Published 9 years ago

simple-pad v1.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

#simple-pad

Yet another left and right padding module

API

pad.lpad(value, width, character)

Left pads the value to the width specified with the character (defaults to '0')

pad.lpad(12, 5); // 00012
pad.lpad(12, 5, 'X'); // XXX12

pad.rpad(value, width, character)

Right pads the value to the width specified with the character (defaults to '0')

pad.rpad(12, 5); // 12000
pad.rpad(12, 5, 'X'); // 12XXX