Skip to content

sindresorhus/filter-obj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

May 27, 2024
7bcfe43 · May 27, 2024

History

41 Commits
Mar 11, 2024
Apr 22, 2019
Apr 22, 2019
Apr 22, 2019
Apr 22, 2019
Jul 23, 2022
May 27, 2024
May 27, 2024
May 27, 2024
Aug 26, 2021
May 27, 2024
May 27, 2024
May 27, 2024

Repository files navigation

filter-obj

Filter object keys and values into a new object

Install

npm install filter-obj

Usage

import {includeKeys, excludeKeys} from 'filter-obj';

const object = {
	foo: true,
	bar: false
};

const newObject = includeKeys(object, (key, value) => value === true);
//=> {foo: true}

const newObject2 = includeKeys(object, ['bar']);
//=> {bar: false}

const newObject = excludeKeys(object, (key, value) => value === true);
//=> {bar: false}

const newObject3 = excludeKeys(object, ['bar']);
//=> {foo: true}

API

includeKeys(source, filter)

includeKeys(source, keys)

excludeKeys(source, filter)

excludeKeys(source, keys)

source

Type: object

The source object to filter properties from.

filter

Type: (sourceKey: string | symbol, sourceValue: unknown, source: object) => boolean

A predicate function that determines whether a property should be filtered.

keys

Type: Array<string | symbol> | Set<string | symbol>

An array or Set of property keys to be filtered.

Related

  • map-obj - Map object keys and values into a new object