lint
This commit is contained in:
parent
bbc40b2d2c
commit
1e9234da8e
|
@ -92,8 +92,10 @@ module MongoDBModule {
|
|||
if (json[field] instanceof Object) {
|
||||
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(
|
||||
/(?<=objectid\(['"]).*(?=['"]\))/gi
|
||||
)?.[0]
|
||||
|
|
Loading…
Reference in New Issue