mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-15 07:24:14 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
13
node_modules/left-pad/perf/es6Repeat.js
generated
vendored
Normal file
13
node_modules/left-pad/perf/es6Repeat.js
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
'use strict';
|
||||
|
||||
module.exports = function (str, len, ch) {
|
||||
str = str + '';
|
||||
|
||||
len = len - str.length;
|
||||
if (len <= 0) return str;
|
||||
|
||||
if (!ch && ch !== 0) ch = ' ';
|
||||
ch = ch + '';
|
||||
|
||||
return ch.repeat(len) + str;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue