mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 22:17:25 -04:00
19 lines
316 B
JavaScript
19 lines
316 B
JavaScript
/*!
|
|
* 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;
|
|
};
|