Skip to content

Instantly share code, notes, and snippets.

@christianscott
Created February 5, 2019 01:02
Show Gist options
  • Save christianscott/74fad298cf8030e1ac09b3ce5b22c010 to your computer and use it in GitHub Desktop.
Save christianscott/74fad298cf8030e1ac09b3ce5b22c010 to your computer and use it in GitHub Desktop.
typesafe pick
function pick<T, K extends keyof T>(k: K): (t: T) => T[K] {
return (t: T) => t[k];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment