Skip to content

Instantly share code, notes, and snippets.

@Sangrene
Created March 29, 2021 22:40
Show Gist options
  • Save Sangrene/0454e9f84004c57915c17a4d2ce6f920 to your computer and use it in GitHub Desktop.
Save Sangrene/0454e9f84004c57915c17a4d2ce6f920 to your computer and use it in GitHub Desktop.
Typed Object.keys(...)
export const getKeys = <T extends {}>(o: T): Array<keyof T> =>
o ? (Object.keys(o) as Array<keyof T>) : [];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment