Skip to content

Instantly share code, notes, and snippets.

@mneedham
Created March 22, 2010 00:04
Show Gist options
  • Select an option

  • Save mneedham/339669 to your computer and use it in GitHub Desktop.

Select an option

Save mneedham/339669 to your computer and use it in GitHub Desktop.
push = Array.prototype.push,
// results is for internal usage only
makeArray: function( array, results ) {
var ret = results || [];
if ( array != null ) {
// The window, strings (and functions) also have 'length'
// The extra typeof function check is to prevent crashes
// in Safari 2 (See: #3039)
if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || (typeof array !== "function" && array.setInterval) ) {
push.call( ret, array );
} else {
jQuery.merge( ret, array );
}
}
return ret;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment