String
Pad

_.pad()

_.pad([string=''], [length=0], [chars=' '])

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.

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

Deep