Skip to content

Instantly share code, notes, and snippets.

@geocine
Created February 7, 2020 03:59
Show Gist options
  • Save geocine/4e53bd19abfcad96050ae34b586eeacd to your computer and use it in GitHub Desktop.
Save geocine/4e53bd19abfcad96050ae34b586eeacd to your computer and use it in GitHub Desktop.
Filter Props
function filterProps(keys, obj) {
return Object.keys(obj).reduce((curr, key) => {
if (keys.includes(key)) {
curr = {
...curr,
[key]: obj[key]
};
}
return curr;
}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment