mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-09 12:52:20 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
18
node_modules/repeat-element/index.js
generated
vendored
Normal file
18
node_modules/repeat-element/index.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*!
|
||||
* 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue