-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
54 lines (43 loc) · 1.19 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
'use strict'
const parse = require('ret')
const types = parse.types
function safeRegex (re, opts) {
if (!opts) opts = {}
/* c8 ignore next */
const replimit = opts.limit === undefined ? 25 : opts.limit
/* c8 ignore next 2 */
if (isRegExp(re)) re = re.source
else if (typeof re !== 'string') re = String(re)
try { re = parse(re) } catch { return false }
let reps = 0
return (function walk (node, starHeight) {
let i
let ok
let len
if (node.type === types.REPETITION) {
starHeight++
reps++
if (starHeight > 1) return false
if (reps > replimit) return false
}
if (node.options) {
for (i = 0, len = node.options.length; i < len; i++) {
ok = walk({ stack: node.options[i] }, starHeight)
if (!ok) return false
}
}
const stack = node.stack || node.value?.stack
if (!stack) return true
for (i = 0; i < stack.length; i++) {
ok = walk(stack[i], starHeight)
if (!ok) return false
}
return true
})(re, 0)
}
function isRegExp (x) {
return {}.toString.call(x) === '[object RegExp]'
}
module.exports = safeRegex
module.exports.default = safeRegex
module.exports.safeRegex = safeRegex