1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-19 09:51:20 +01:00
Files
inno-setup/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js
2023-07-08 08:34:15 +00: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;
}, {});
}