Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Created August 2, 2017 23:25
Show Gist options
  • Save lupomontero/1be3350ef8c50ff8e6136e01476ab66e to your computer and use it in GitHub Desktop.
Save lupomontero/1be3350ef8c50ff8e6136e01476ab66e to your computer and use it in GitHub Desktop.
module.exports = (obj, ignore) => Object.keys(obj)
.reduce((m, k) => (ignore.indexOf(k) < 0) ? ((m[k] = obj[k]) && m) : m, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment