(value)
| 89 | } |
| 90 | |
| 91 | function parseJSONRegExpArray(value) { |
| 92 | value = parseJSONArray(value); |
| 93 | return value && value.map(parseRegExp); |
| 94 | } |
| 95 | |
| 96 | function parseString(value) { |
| 97 | return value; |
nothing calls this directly
no test coverage detected
searching dependent graphs…