( obj )
| 23 | // borrowed from jQuery |
| 24 | _isFunction = function( obj ) { return Object.prototype.toString.call(obj) === "[object Function]"; }, |
| 25 | _isArray = function( obj ) { return Object.prototype.toString.call(obj) === "[object Array]"; }, |
| 26 | _isRegExp = function( obj ) { return Object.prototype.toString.call(obj) === "[object RegExp]"; }, |
| 27 | _decode = function( str ) { return decodeURIComponent((str || '').replace(/\+/g, ' ')); }, |
| 28 | _encode = encodeURIComponent, |