pad
最后更新于:2022-04-02 00:07:13
## pad
+ [link](./pad "Link to this entry.")
+ [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L12292 "View in source.")
+ [npm](https://www.npmjs.com/package/lodash.pad "See the npm package.")
```
_.pad([string=''], [length=0], [chars=' '])
```
如果字符串长度小于 `length` 则从左到右填充字符。 如果没法平均分配,则截断超出的长度。
### 参数
1. [string=''] (string)
要填充的字符串
2. [length=0] (number)
填充的长度
3. [chars=' '] (string)
填充字符
### 返回值 (string)
返回填充后的字符串
### 示例
```
_.pad('abc', 8);
// => ' abc '
_.pad('abc', 8, '_-');
// => '_-abc_-_'
_.pad('abc', 3);
// => 'abc'
```
';