Skip to content

Instantly share code, notes, and snippets.

@RodrigoNovais
Created April 19, 2020 19:31
Show Gist options
  • Save RodrigoNovais/d0da69e370fea48e2c6bc1c57bf50bc1 to your computer and use it in GitHub Desktop.
Save RodrigoNovais/d0da69e370fea48e2c6bc1c57bf50bc1 to your computer and use it in GitHub Desktop.
custom object has a key checker
export const hasKey = <T>(object: T, key: keyof any): key is keyof T => key in object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment