Lodash - padStart 方法
语法
_.padStart([string=''], [length=0], [chars=' '])
如果字符串比长度短,则在左侧填充字符串。如果填充字符超出长度,则对其进行截断。
参数
[string=''] (string) − 要填充的字符串。
[length=0] (number) − 填充长度。
[chars=' '] (string) − 用作填充的字符串。
输出
(string) − 返回填充后的字符串。
示例
var _ = require('lodash'); var result = _.padStart('foo', 8, '_'); console.log(result);
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
_____foo
lodash_string.htm
广告