mirror of
https://github.com/actions/setup-node
synced 2024-12-25 06:32:41 +00:00
9 lines
227 B
JavaScript
9 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;
|
|
}, {});
|
|
}
|