mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-22 05:54:45 +00:00
.
This commit is contained in:
parent
fc725ba36b
commit
422b9fdb15
7395 changed files with 1786235 additions and 3476 deletions
43
node_modules/safe-regex/index.js
generated
vendored
Normal file
43
node_modules/safe-regex/index.js
generated
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
var parse = require('ret');
|
||||
var types = parse.types;
|
||||
|
||||
module.exports = function (re, opts) {
|
||||
if (!opts) opts = {};
|
||||
var replimit = opts.limit === undefined ? 25 : opts.limit;
|
||||
|
||||
if (isRegExp(re)) re = re.source;
|
||||
else if (typeof re !== 'string') re = String(re);
|
||||
|
||||
try { re = parse(re) }
|
||||
catch (err) { return false }
|
||||
|
||||
var reps = 0;
|
||||
return (function walk (node, starHeight) {
|
||||
if (node.type === types.REPETITION) {
|
||||
starHeight ++;
|
||||
reps ++;
|
||||
if (starHeight > 1) return false;
|
||||
if (reps > replimit) return false;
|
||||
}
|
||||
|
||||
if (node.options) {
|
||||
for (var i = 0, len = node.options.length; i < len; i++) {
|
||||
var ok = walk({ stack: node.options[i] }, starHeight);
|
||||
if (!ok) return false;
|
||||
}
|
||||
}
|
||||
var stack = node.stack || (node.value && node.value.stack);
|
||||
if (!stack) return true;
|
||||
|
||||
for (var i = 0; i < stack.length; i++) {
|
||||
var ok = walk(stack[i], starHeight);
|
||||
if (!ok) return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
})(re, 0);
|
||||
};
|
||||
|
||||
function isRegExp (x) {
|
||||
return {}.toString.call(x) === '[object RegExp]';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue