misskey-awawa/src/misc/is-objectid.ts

6 lines
194 B
TypeScript

import { ObjectID } from 'mongodb';
export default function(x: any): x is ObjectID {
return x && typeof x === 'object' && (x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype'));
}