_.padEnd([string=''], [length=0], [chars=' '])
source npm package
Pads string on the right side if it's shorter than length. Padding characters are truncated if they exceed length.
Since
4.0.0
Arguments
[string=''] (string): The string to pad.
[length=0] (number): The padding length.
[chars=' '] (string): The string used as padding.
Returns
(string): Returns the padded string.
Example
_.padEnd('abc', 6);
// => 'abc '
_.padEnd('abc', 6, '_-');
// => 'abc_-_'
_.padEnd('abc', 3)