4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 21:16:57 +00:00
setup-helm/node_modules/repeat-element/index.js
2022-06-27 14:17:15 -04:00

22 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;
};