// ========= // = humps = // ========= // Underscore-to-camelCase converter (and vice versa) // for strings and object keys // humps is copyright © 2012+ Dom Christie // Released under the MIT license. ;(function(global) { var _processKeys = function(convert, obj, options) { if(!_isObject(obj) || _isDate(obj) || _isRegExp(obj) || _isBoolean(obj) || _isFunction(obj)) { return obj; } var output, i = 0, l = 0; if(_isArray(obj)) { output = []; for(l=obj.length; i