Skip to main content

mapKeys

주어진 객체의 각 키를 주어진 iteratee 함수 결과에 따라 변환하여 새로운 객체를 반환합니다.

Code

🔗 실제 구현 코드 확인

Benchmark

  • hz: 초당 작업 수
  • mean: 평균 응답 시간(ms)
이름hzmean성능
modern-kit/mapKeys3,983,407.380.0003fastest
lodash/mapKeys3,060,203.940.0003slowest
  • modern-kit/mapKeys
    • 1.30x faster than lodash/mapKeys

Interface

typescript
function mapKeys<T extends Record<PropertyKey, any>, K extends PropertyKey>(
obj: T,
iteratee: (iterateData: { key: keyof T; value: T[keyof T]; obj: T }) => K
): Record<K, T[keyof T]>;

Usage

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

const obj = { a: 1, b: 2 };

const newObj = mapKeys(obj, ({ key, value }) => key + value);
// { a1: 1, b2: 2 }