OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / jquery / src / core / toType.js
diff --git a/tools/side_chain_tool/web/node_modules/jquery/src/core/toType.js b/tools/side_chain_tool/web/node_modules/jquery/src/core/toType.js
deleted file mode 100644 (file)
index c77ba95..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-define( [
-       "../var/class2type",
-       "../var/toString"
-], function( class2type, toString ) {
-
-"use strict";
-
-function toType( obj ) {
-       if ( obj == null ) {
-               return obj + "";
-       }
-
-       // Support: Android <=2.3 only (functionish RegExp)
-       return typeof obj === "object" || typeof obj === "function" ?
-               class2type[ toString.call( obj ) ] || "object" :
-               typeof obj;
-}
-
-return toType;
-} );