mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-24 04:03:50 +08:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
export function lowercaseKeys(object) {
|
|
if (!object) {
|
|
return {};
|
|
}
|
|
return Object.keys(object).reduce((newObj, key) => {
|
|
newObj[key.toLowerCase()] = object[key];
|
|
return newObj;
|
|
}, {});
|
|
}
|