Commit f1c6b8e9 authored by Tristan Cavelier's avatar Tristan Cavelier

BACKSLASH dist/jio-latest.js

parent a8b0aeae
...@@ -7455,8 +7455,11 @@ return new Parser; ...@@ -7455,8 +7455,11 @@ return new Parser;
}; };
function sanitizeQueryValue(value) { function sanitizeQueryValue(value) {
if (typeof value === "string") {
return value.replace(/((?:\\\\)*)\\$/, "$1"); return value.replace(/((?:\\\\)*)\\$/, "$1");
} }
return value;
}
function objectToSearchText(query) { function objectToSearchText(query) {
var i = 0, var i = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment