Skip to content

Commit

Permalink
Updating to latest QUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Apr 1, 2010
1 parent eccb95a commit 70d25ae
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions external/qunit.js
Expand Up @@ -953,16 +953,14 @@ QUnit.jsDump = (function() {
type = "date";
} else if (QUnit.is("Function", obj)) {
type = "function";
} else if (QUnit.is("Array", obj)) {
type = "array";
} else if (QUnit.is("Window", obj) || QUnit.is("global", obj)) {
} else if (obj.setInterval && obj.document && !obj.nodeType) {
type = "window";
} else if (QUnit.is("HTMLDocument", obj)) {
} else if (obj.nodeType === 9) {
type = "document";
} else if (QUnit.is("HTMLCollection", obj) || QUnit.is("NodeList", obj)) {
type = "nodelist";
} else if (/^\[object HTML/.test(Object.prototype.toString.call( obj ))) {
} else if (obj.nodeType) {
type = "node";
} else if (typeof obj === "object" && typeof obj.length === "number" && obj.length >= 0) {
type = "array";
} else {
type = typeof obj;
}
Expand Down

0 comments on commit 70d25ae

Please sign in to comment.