Files
30-seconds-of-code/snippets/omit-by.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

773 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Omit matching object keys object leafy-screens 2018-01-19T13:23:45+02:00 2020-10-21T21:54:53+03:00

Creates an object composed of the properties the given function returns falsy for.

  • Use Object.keys() and Array.prototype.filter() to remove the keys for which fn returns a truthy value.
  • Use Array.prototype.reduce() to convert the filtered keys back to an object with the corresponding key-value pairs.
  • The callback function is invoked with two arguments: (value, key).
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' }