summaryrefslogtreecommitdiff
path: root/src/misc/is-objectid.ts
blob: 8c1aabd5684861cd1c7b489b16a94fefce94e457 (plain)
1
2
3
export default function(x: any): boolean {
	return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype');
}