mirror of
http://gh.hjkl01.cn/https://github.com/actions/setup-node
synced 2026-05-31 04:55:18 +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;
|
|
}, {});
|
|
}
|