diff --git a/src/jsonPathTo.ts b/src/jsonPathTo.ts index 663f762..c04d9eb 100644 --- a/src/jsonPathTo.ts +++ b/src/jsonPathTo.ts @@ -125,6 +125,7 @@ function findEndQuote(text: string, i: number) { // Handle backtracking to find if this quote is escaped if (text[i] === "\\") { i += 2; + continue; } if (text[i] === '"') {