mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-27 22:39:33 +09:00
6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import { ObjectID } from 'mongodb';
|
|
|
|
export default function(x: any): x is ObjectID {
|
|
return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype');
|
|
}
|