Update is-objectid.ts (#4277)
* Update is-objectid.ts * Update is-objectid.ts
This commit is contained in:
parent
0064dbb010
commit
2776934728
@ -1,5 +1,5 @@
|
|||||||
import { ObjectID } from 'mongodb';
|
import { ObjectID } from 'mongodb';
|
||||||
|
|
||||||
export default function(x: any): x is ObjectID {
|
export default function(x: any): x is ObjectID {
|
||||||
return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype');
|
return x && typeof x === 'object' && (x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype'));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user