Skip to content

Instantly share code, notes, and snippets.

@alexaivars
Created January 25, 2017 12:07
Show Gist options
  • Select an option

  • Save alexaivars/41098e5e4a72c3843723e303e137ac1a to your computer and use it in GitHub Desktop.

Select an option

Save alexaivars/41098e5e4a72c3843723e303e137ac1a to your computer and use it in GitHub Desktop.
module.exports = (obj, ...keys ) => keys.reduce((result, key) => Object.assign(result, { [key]: obj[key] }), {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment