Pads string on the left and right sides if it's shorter than length. Padding characters are truncated if they can't be evenly divided by length.
string
length
The string to pad.
The padding length.
The string used as padding.
Returns the padded string.
5.12.0
pad('abc', 8)// => ' abc 'pad('abc', 8, '_-')// => '_-abc_-_'pad('abc', 2)// => 'abc' Copy
pad('abc', 8)// => ' abc 'pad('abc', 8, '_-')// => '_-abc_-_'pad('abc', 2)// => 'abc'
Pads
string
on the left and right sides if it's shorter thanlength
. Padding characters are truncated if they can't be evenly divided bylength
.