Add production dependencies & build

This commit is contained in:
Sascha Mann
2020-02-13 10:54:11 +01:00
parent 150b180e77
commit d481ced272
620 changed files with 136417 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
export function lowercaseKeys(object) {
if (!object) {
return {};
}
return Object.keys(object).reduce((newObj, key) => {
newObj[key.toLowerCase()] = object[key];
return newObj;
}, {});
}