Gazebo_simulation-Frontend/node_modules/left-pad
Riddhi Dave f4870cd530 simulator page updates 2020-12-22 09:59:14 -05:00
..
perf React files 2020-12-21 10:29:31 -05:00
.travis.yml React files 2020-12-21 10:29:31 -05:00
COPYING React files 2020-12-21 10:29:31 -05:00
README.md React files 2020-12-21 10:29:31 -05:00
index.d.ts React files 2020-12-21 10:29:31 -05:00
index.js React files 2020-12-21 10:29:31 -05:00
package.json simulator page updates 2020-12-22 09:59:14 -05:00
test.js React files 2020-12-21 10:29:31 -05:00

README.md

left-pad

String left pad

Build Status

Install

$ npm install left-pad

Usage

const leftPad = require('left-pad')

leftPad('foo', 5)
// => "  foo"

leftPad('foobar', 6)
// => "foobar"

leftPad(1, 2, '0')
// => "01"

leftPad(17, 5, 0)
// => "00017"

NOTE: The third argument should be a single char. However the module doesn't throw an error if you supply more than one chars. See #28.

NOTE: Characters having code points outside of BMP plan are considered a two distinct characters. See #58.