774 B
774 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Omit matching object keys | snippet | javascript |
|
leafy-screens | 2020-10-21T21:54:53+03:00 |
Creates an object composed of the properties the given function returns falsy for.
- Use
Object.keys()andArray.prototype.filter()to remove the keys for whichfnreturns 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' }