Skip to content

Instantly share code, notes, and snippets.

@Git-I985
Last active March 6, 2023 12:23
Show Gist options
  • Save Git-I985/34fe877c25938a34286ff856823745fa to your computer and use it in GitHub Desktop.
Save Git-I985/34fe877c25938a34286ff856823745fa to your computer and use it in GitHub Desktop.
Pick
export default (obj, keysArr) => {
return Object.fromEntries(Object.entries(obj).filter(([key]) => keysArr.includes(key)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment