| /*! | |
| * 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) { | |
| var arr = new Array(num); | |
| for (var i = 0; i < num; i++) { | |
| arr[i] = ele; | |
| } | |
| return arr; | |
| }; |