Skip to main content

pickBy

pick 함수와 유사하지만, 주어진 객체에서 predicate 함수를 만족하는 프로퍼티로 구성된 새로운 객체를 반환하는 함수입니다.


Code

🔗 실제 구현 코드 확인

Benchmark

  • hz: 초당 작업 수
  • mean: 평균 응답 시간(ms)
이름hzmean성능
modern-kit/pickBy7,602,665.150.0001fastest
lodash/pickBy1,768,814.920.0006-
  • modern-kit/pickBy
    • 4.30x faster than lodash/pickBy

Interface

typescript
function pickBy<T extends Record<PropertyKey, any>>(
obj: T,
predicate: (value: T[keyof T], key: keyof T) => boolean
): Partial<T>;

Usage

typescript
import { pickBy } from '@modern-kit/utils';

const obj = { a: 1, b: undefined, c: null, d: '', e: 'str' };
const result = pickBy(obj, (value) => !value);
// { b: undefined, c: null, d: '' }