Skip to content

Instantly share code, notes, and snippets.

@gondar00
Forked from radutta/convertKeysToLower.js
Created April 26, 2023 06:46
Show Gist options
  • Save gondar00/17c6fdd37f9310bcf7c1eeb05e052661 to your computer and use it in GitHub Desktop.
Save gondar00/17c6fdd37f9310bcf7c1eeb05e052661 to your computer and use it in GitHub Desktop.
Convert JSON Keys to lowercase in Javascript
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