mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-22 19:50:55 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
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;
|
|
}, {});
|
|
}
|