I have a nested object with nested keys that I would like to make all lowercase:
let input : {
"KEY1" : "VALUE1",
"KEY2" : {"SUBKEY1":"SUBVALUE2"}
}
So the resulting value result
should be:
console.log(result)
{
"key1" : "VALUE1",
"key2" : {"subkey1":"SUBVALUE2"}
}
How to lowercase all the keys in a nested object?