Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /** | |
| * Created by gonchub on 19/03/14. | |
| */ | |
| function keysToLowerCase(obj) { | |
| 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; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.