import _ from 'lodash'
_.repeat([string=''], [n=1])
参数
[string=''] (string): 要重复的字符串。
[n=1] (number): 重复的次数。
返回
(string): 返回重复的字符串。
例子
_.repeat('*', 3);
// => '***'
_.repeat('abc', 2);
// => 'abcabc'
_.repeat('abc', 0);
// => ''
import _ from 'lodash'
_.repeat([string=''], [n=1])
[string=''] (string): 要重复的字符串。
[n=1] (number): 重复的次数。
(string): 返回重复的字符串。
_.repeat('*', 3);
// => '***'
_.repeat('abc', 2);
// => 'abcabc'
_.repeat('abc', 0);
// => ''