mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-16 23:17:33 -07:00
5 lines
162 B
TypeScript
5 lines
162 B
TypeScript
import { ObjectID } from 'mongodb';
|
|
|
|
export default function(x: any): x is ObjectID {
|
|
return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype');
|
|
}
|