1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-30 06:28:31 +09:00
misskey/src/misc/is-objectid.ts

4 lines
119 B
TypeScript
Raw Normal View History

2018-10-16 11:38:09 +09:00
export default function(x: any): boolean {
return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype');
}