Skip to content

Instantly share code, notes, and snippets.

@wesleybliss
Created December 17, 2020 15:09
Show Gist options
  • Save wesleybliss/23ffda2dfa172afcb6624f162d45dad9 to your computer and use it in GitHub Desktop.
Save wesleybliss/23ffda2dfa172afcb6624f162d45dad9 to your computer and use it in GitHub Desktop.
Omit #js
export const omit = (obj, fn) => Object.keys(obj)
.filter(it => fn(obj[it]))
.reduce((acc, it) => ({ ...acc, [it]: obj[it] }), {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment