Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created January 18, 2010 14:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cowboy/280043 to your computer and use it in GitHub Desktop.
Save cowboy/280043 to your computer and use it in GitHub Desktop.
The Miller Device - jQuery Plugin
// based on http://zaa.ch/1q
$.isType = function( obj, type ) {
var opt = Object.prototype.toString,
result = opt.call( obj ).slice( 8, -1 ).toLowerCase();
if ( type === 'null' || type === 'undefined' ) {
type = type === 'null' ? opt.call( null ) : opt.call( undefined );
type = type.slice( 8, -1 ).toLowerCase();
}
return result === type;
};
/*
// these should all return true
$.isType( {}, 'object' );
$.isType( [], 'array' );
$.isType( 1, 'number' );
$.isType( NaN, 'number' );
$.isType( Infinity, 'number' );
$.isType( function(){}, 'function' );
$.isType( true, 'boolean' );
$.isType( new Date(), 'date' );
$.isType( /omg/, 'regexp' );
$.isType( null, 'null' );
$.isType( undefined, 'undefined' );
*/
@cowboy
Copy link
Author

cowboy commented Aug 26, 2010

I'm not sure what kind of crack I was smoking at the time, but it seemed important for me to have those extra checks in there. Thanks, JD!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment