simple-pad

1.0.2 • Public • Published

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

Package Sidebar

Install

npm i simple-pad

Weekly Downloads

4

Version

1.0.2

License

MIT

Last publish

Collaborators

  • mauricebutler