Skip to content

Instantly share code, notes, and snippets.

@reggi
Created August 14, 2023 02:03
Show Gist options
  • Save reggi/8543afaedca48b7264fcf27402a87b18 to your computer and use it in GitHub Desktop.
Save reggi/8543afaedca48b7264fcf27402a87b18 to your computer and use it in GitHub Desktop.
class Guard<T> {
constructor(public value: T) {}
isNotArray(): Guard<T extends any[] ? never : T> {
return Array.isArray(this.value) ? new Guard<never>(undefined as never) : this as unknown as Guard<T extends any[] ? never : T>;
}
isNotUndefined(): Guard<Exclude<T, undefined>> {
return this.value === undefined ? new Guard<never>(undefined as never) : this as unknown as Guard<Exclude<T, undefined>>;
}
isNotBoolean(): Guard<Exclude<T, boolean>> {
return typeof this.value === 'boolean' ? new Guard<never>(undefined as never) : this as unknown as Guard<Exclude<T, boolean>>;
}
isArray(): Guard<Extract<T, any[]>> {
return Array.isArray(this.value) ? this as unknown as Guard<Extract<T, any[]>> : new Guard<never>(undefined as never);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment