Created
January 13, 2012 06:45
-
-
Save realdeprez/1604927 to your computer and use it in GitHub Desktop.
$.extend, ripped out of jquery 1.7.2pre
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* $.extend, ripped out of jquery 1.7.2pre */ | |
$ = { | |
class2type: function () { | |
var types = ["Boolean", "Number", "String", "Function", "Array", "Date", "RegExp", "Object"], | |
typeMap = {}; | |
for (var i = 0, len = types.length; i < len; i++) { | |
typeMap[ "[object " + types[i] + "]" ] = types[i].toLowerCase(); | |
} | |
return typeMap; | |
}(), | |
type: function( obj ) { | |
return obj == null ? | |
String( obj ) : | |
this.class2type[ Object.prototype.toString.call(obj) ] || "object"; | |
}, | |
// See test/unit/core.js for details concerning isFunction. | |
// Since version 1.3, DOM methods and functions like alert | |
// aren't supported. They return false on IE (#2968). | |
isFunction: function( obj ) { | |
return this.type(obj) === "function"; | |
}, | |
isWindow: function( obj ) { | |
return obj != null && obj == obj.window; | |
}, | |
isArray: Array.isArray || function( obj ) { | |
return this.type(obj) === "array"; | |
}, | |
isPlainObject: function( obj ) { | |
// Must be an Object. | |
// Because of IE, we also have to check the presence of the constructor property. | |
// Make sure that DOM nodes and window objects don't pass through, as well | |
if ( !obj || this.type(obj) !== "object" || obj.nodeType || this.isWindow( obj ) ) { | |
return false; | |
} | |
try { | |
// Not own constructor property must be Object | |
if ( obj.constructor && | |
!Object.prototype.hasOwnProperty.call(obj, "constructor") && | |
!Object.prototype.hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) { | |
return false; | |
} | |
} catch ( e ) { | |
// IE8,9 Will throw exceptions on certain host objects #9897 | |
return false; | |
} | |
// Own properties are enumerated firstly, so to speed up, | |
// if last one is own, then all properties are own. | |
var key; | |
for ( key in obj ) {} | |
return key === undefined || Object.prototype.hasOwnProperty.call( obj, key ); | |
}, | |
extend: function() { | |
var options, name, src, copy, copyIsArray, clone, | |
target = arguments[0] || {}, | |
i = 1, | |
length = arguments.length, | |
deep = false; | |
// Handle a deep copy situation | |
if ( typeof target === "boolean" ) { | |
deep = target; | |
target = arguments[1] || {}; | |
// skip the boolean and the target | |
i = 2; | |
} | |
// Handle case when target is a string or something (possible in deep copy) | |
if ( typeof target !== "object" && !this.isFunction(target) ) { | |
target = {}; | |
} | |
// extend $ itself if only one argument is passed | |
// PROBABLY DON'T NEED | |
if ( length === i ) { | |
target = this; | |
--i; | |
} | |
for ( ; i < length; i++ ) { | |
// Only deal with non-null/undefined values | |
if ( (options = arguments[ i ]) != null ) { | |
// Extend the base object | |
for ( name in options ) { | |
src = target[ name ]; | |
copy = options[ name ]; | |
// Prevent never-ending loop | |
if ( target === copy ) { | |
continue; | |
} | |
// Recurse if we're merging plain objects or arrays | |
if ( deep && copy && ( this.isPlainObject(copy) || (copyIsArray = this.isArray(copy)) ) ) { | |
if ( copyIsArray ) { | |
copyIsArray = false; | |
clone = src && this.isArray(src) ? src : []; | |
} else { | |
clone = src && this.isPlainObject(src) ? src : {}; | |
} | |
// Never move original objects, clone them | |
target[ name ] = this.extend( deep, clone, copy ); | |
// Don't bring in undefined values | |
} else if ( copy !== undefined ) { | |
target[ name ] = copy; | |
} | |
} | |
} | |
} | |
// Return the modified object | |
return target; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment