Created
March 22, 2010 00:04
-
-
Save mneedham/339669 to your computer and use it in GitHub Desktop.
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
| 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