Browse Source

lint

master
Mel O'Hagan 4 years ago
parent
commit
9ce34aa4c0
  1. 2
      packages/server/src/integrations/mongodb.ts

2
packages/server/src/integrations/mongodb.ts

@ -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) {

Loading…
Cancel
Save