1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 10:15:27 +00:00
notes/node_modules/repeat-element/index.js

19 lines
316 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/*!
* repeat-element <https://github.com/jonschlinkert/repeat-element>
*
* Copyright (c) 2015 Jon Schlinkert.
* Licensed under the MIT license.
*/
'use strict';
module.exports = function repeat(ele, num) {
var arr = new Array(num);
for (var i = 0; i < num; i++) {
arr[i] = ele;
}
return arr;
};