mirror of https://github.com/jkjoy/sunpeiwen.git
23 lines
397 B
JavaScript
23 lines
397 B
JavaScript
/*!
|
|
* repeat-element <https://github.com/jonschlinkert/repeat-element>
|
|
*
|
|
* Copyright (c) 2015-present, Jon Schlinkert.
|
|
* Licensed under the MIT license.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function repeat(ele, num) {
|
|
if (Array.prototype.fill) {
|
|
return new Array(num).fill(ele);
|
|
}
|
|
|
|
var arr = new Array(num);
|
|
|
|
for (var i = 0; i < num; i++) {
|
|
arr[i] = ele;
|
|
}
|
|
|
|
return arr;
|
|
};
|