-
-
Save gondar00/17c6fdd37f9310bcf7c1eeb05e052661 to your computer and use it in GitHub Desktop.
Convert JSON Keys to lowercase in Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function keysToLowerCase(obj) { | |
if(obj instanceof Array) { | |
for (var i in obj) { | |
obj[i] = keysToLowerCase(obj[i]); | |
} | |
} | |
if (!typeof(obj) === "object" || typeof(obj) === "string" || typeof(obj) === "number" || typeof(obj) === "boolean") { | |
return obj; | |
} | |
var keys = Object.keys(obj); | |
var n = keys.length; | |
var lowKey; | |
while (n--) { | |
var key = keys[n]; | |
if (key === (lowKey = key.toLowerCase())) | |
continue; | |
obj[lowKey] = keysToLowerCase(obj[key]); | |
delete obj[key]; | |
} | |
return (obj); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment