Skip to content
Snippets Groups Projects
Commit 2f215ea3 authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏) Committed by syuilo
Browse files

Use `is` syntax (#4079)

parent c44c7779
No related branches found
No related tags found
No related merge requests found
export default function(x: any): boolean {
import { ObjectID } from 'mongodb';
export default function(x: any): x is ObjectID {
return x.hasOwnProperty('toHexString') || x.hasOwnProperty('_bsontype');
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment