UNPKG

@esm2cjs/lowercase-keys

Version:

Lowercase the keys of an object. This is a fork of sindresorhus/lowercase-keys, but with CommonJS support.

4 lines (3 loc) 152 B
export default function lowercaseKeys(object) { return Object.fromEntries(Object.entries(object).map(([key, value]) => [key.toLowerCase(), value])); }