Skip to content

Instantly share code, notes, and snippets.

@gaboesquivel
Last active June 23, 2020 17:26
Show Gist options
  • Select an option

  • Save gaboesquivel/58e8ca9f70a10e02cf63 to your computer and use it in GitHub Desktop.

Select an option

Save gaboesquivel/58e8ca9f70a10e02cf63 to your computer and use it in GitHub Desktop.
convert all keys a of javascript object to lowercase with lodash
_.transform(obj, function (result, val, key) {
result[key.toLowerCase()] = val;
});
@L-u-k-e

L-u-k-e commented Jan 17, 2016

Copy link
Copy Markdown

or

 obj = _.mapKeys(obj, function (v, k) { return k.toLowerCase(); });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment