Files
dynamic-badges-action/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js
Simon Schneegans ed18a71a87 🎉 Initial commit
2020-08-15 12:02:21 +02: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;
}, {});
}