orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
19 lines (14 loc) • 316 B
JavaScript
/*!
* repeat-element <https://github.com/jonschlinkert/repeat-element>
*
* Copyright (c) 2015 Jon Schlinkert.
* Licensed under the MIT license.
*/
;
module.exports = function repeat(ele, num) {
var arr = new Array(num);
for (var i = 0; i < num; i++) {
arr[i] = ele;
}
return arr;
};