X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fcore.js;h=3c7572fe6e3f158db25d1d1cfbaebe40195d5e57;hb=34bf1a2a7d688d9861350fd7836eb98268db821e;hp=cc921385d939141b02320050851ea0cf4b78dfa5;hpb=e0a9615f82fcdad73de6db42a995eb2a5550e361;p=jquery.git diff --git a/src/core.js b/src/core.js index cc92138..3c7572f 100644 --- a/src/core.js +++ b/src/core.js @@ -33,6 +33,9 @@ var jQuery = function( selector, context ) { // Check for non-word characters rnonword = /\W/, + // Check for digits + rdigit = /\d/, + // Match a standalone tag rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, @@ -488,6 +491,10 @@ jQuery.extend({ return obj && typeof obj === "object" && "setInterval" in obj; }, + isNaN: function( obj ) { + return obj == null || !rdigit.test( obj ) || isNaN( obj ); + }, + type: function( obj ) { return obj == null ? String( obj ) : @@ -719,6 +726,7 @@ jQuery.extend({ } } + // Flatten any nested arrays return ret.concat.apply( [], ret ); },