Lodash pad method
语法
_.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.
参数
[string=''] (string) − The string to pad.
[length=0] (number) − The padding length.
[chars=' '] (string) − The string used as padding.
输出
(string) − Returns the padded string.
实例
var _ = require('lodash');
var result = _.pad('foo', 8, '_');
console.log(result);
Save the above program in
tester.js. Run the following command to execute this program.
Command
输出