1
0
mirror of https://github.com/actions/setup-node.git synced 2025-03-03 02:49:03 +07:00
2019-08-05 15:18:52 -04:00

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;
}, {});
}