@graphy/content.nq.read
Advanced tools
Comparing version 4.0.2 to 4.0.3
@@ -123,3 +123,3 @@ | ||
try { | ||
/(?<!h)i/; // eslint-disable-line no-unused-expressions | ||
new RegExp('(?<!h)i'); // eslint-disable-line no-new | ||
} | ||
@@ -137,3 +137,3 @@ catch(e_compile) { | ||
mk_lookbehind_regex( | ||
() => /(?<!(?:[^\\]|^)(?:\\\\)*\\)\\(|u[0-9A-Fa-f]{0,3}|U[0-9A-Fa-f]{0,7})$/, | ||
() => new RegExp('(?<!(?:[^\\\\]|^)(?:\\\\\\\\)*\\\\)\\\\(|u[0-9A-Fa-f]{0,3}|U[0-9A-Fa-f]{0,7})$'), | ||
/^(?:(?:[^\\]|\\.)*)(\\(?:|u[0-9A-Fa-f]{0,3}|U[0-9A-Fa-f]{0,7}))$/, | ||
@@ -151,3 +151,3 @@ function RegExp_$lookbehind_polyfill_n(s_input) { | ||
mk_lookbehind_regex( | ||
() => /(?<!(?:[^\\]|^)(?:\\\\)*\\)"\s*/g, | ||
() => new RegExp('(?<!(?:[^\\\\]|^)(?:\\\\\\\\)*\\\\)"\\s*', 'g'), | ||
/(?:[^\\"]|\\.)*("\s*)/y, | ||
@@ -154,0 +154,0 @@ RegExp_$lookbehind_polyfill, |
{ | ||
"name": "@graphy/content.nq.read", | ||
"version": "4.0.2", | ||
"version": "4.0.3", | ||
"description": "Single-threaded RDF N-Quads content reader", | ||
@@ -26,4 +26,4 @@ "keywords": [ | ||
"dependencies": { | ||
"@graphy/core.data.factory": "^4.0.2", | ||
"@graphy/core.iso.stream": "^4.0.2" | ||
"@graphy/core.data.factory": "^4.0.3", | ||
"@graphy/core.iso.stream": "^4.0.3" | ||
}, | ||
@@ -30,0 +30,0 @@ "engines": { |
35702