Created
August 14, 2023 02:03
-
-
Save reggi/8543afaedca48b7264fcf27402a87b18 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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