mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-15 08:19:19 +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;
|
|
}, {});
|
|
}
|