lint
This commit is contained in:
parent
da4107b26c
commit
e0744000a4
|
@ -92,8 +92,10 @@ module MongoDBModule {
|
||||||
if (json[field] instanceof Object) {
|
if (json[field] instanceof Object) {
|
||||||
json[field] = self.createObjectIds(json[field])
|
json[field] = self.createObjectIds(json[field])
|
||||||
}
|
}
|
||||||
if (typeof json[field] === "string" && json[field].toLowerCase().startsWith("objectid"))
|
if (
|
||||||
{
|
typeof json[field] === "string" &&
|
||||||
|
json[field].toLowerCase().startsWith("objectid")
|
||||||
|
) {
|
||||||
const id = json[field].match(
|
const id = json[field].match(
|
||||||
/(?<=objectid\(['"]).*(?=['"]\))/gi
|
/(?<=objectid\(['"]).*(?=['"]\))/gi
|
||||||
)?.[0]
|
)?.[0]
|
||||||
|
|
Loading…
Reference in New Issue