1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-20 09:38:29 +09:00
misskey/src/misc/is-objectid.ts
Acid Chicken (硫酸鶏) 2f215ea34c Use is syntax (#4079)
2019-02-03 04:31:03 +09:00

6 lines
162 B
TypeScript

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