es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
13 lines (10 loc) • 345 B
JavaScript
import { identity } from '../../function/identity.mjs';
import { mapKeys as mapKeys$1 } from '../../object/mapKeys.mjs';
import { iteratee } from '../util/iteratee.mjs';
function mapKeys(object, getNewKey = identity) {
if (object == null) {
return {};
}
return mapKeys$1(object, iteratee(getNewKey));
}
export { mapKeys };