Omit object properties based on function

JavaScript, Object · Oct 21, 2020

Omits the key-value pairs corresponding to the keys of the object for which the given function returns falsy.

const omitBy = (obj, fn) =>
  Object.keys(obj)
    .filter(k => !fn(obj[k], k))
    .reduce((acc, key) => ((acc[key] = obj[key]), acc), {});
omitBy({ a: 1, b: '2', c: 3 }, x => typeof x === 'number'); // { b: '2' }

More like this

  • Omit object properties

    Omits the key-value pairs corresponding to the given keys from an object.

    JavaScript, Object · Oct 21, 2020

  • Pick object keys

    Picks the key-value pairs corresponding to the given keys from an object.

    JavaScript, Object · Oct 18, 2020

  • Matches object properties based on function

    Compares two objects to determine if the first one contains equivalent property values to the second one, based on a provided function.

    JavaScript, Object · Oct 21, 2020