1
0
Fork 0
mirror of synced 2024-06-13 16:05:06 +12:00
This commit is contained in:
Mel O'Hagan 2022-08-10 10:58:11 +01:00
parent 334d9a956d
commit 9ce34aa4c0

View file

@ -123,7 +123,7 @@ module MongoDBModule {
let i = 0
let startIndex = 0
for (let c of params) {
if (c === '"' && (i > 0 && params[i-1] !== '\\')) {
if (c === '"' && i > 0 && params[i - 1] !== "\\") {
inQuotes = !inQuotes
}
if (c === "{" && !inQuotes) {