aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.js')
-rw-r--r--src/core.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/core.js b/src/core.js
index 8ed56b7e8..c79455507 100644
--- a/src/core.js
+++ b/src/core.js
@@ -1,17 +1,17 @@
-import arr from "./var/arr.js";
-import getProto from "./var/getProto.js";
-import slice from "./var/slice.js";
-import flat from "./var/flat.js";
-import push from "./var/push.js";
-import indexOf from "./var/indexOf.js";
-import class2type from "./var/class2type.js";
-import toString from "./var/toString.js";
-import hasOwn from "./var/hasOwn.js";
-import fnToString from "./var/fnToString.js";
-import ObjectFunctionString from "./var/ObjectFunctionString.js";
-import support from "./var/support.js";
-import isArrayLike from "./core/isArrayLike.js";
-import DOMEval from "./core/DOMEval.js";
+import { arr } from "./var/arr.js";
+import { getProto } from "./var/getProto.js";
+import { slice } from "./var/slice.js";
+import { flat } from "./var/flat.js";
+import { push } from "./var/push.js";
+import { indexOf } from "./var/indexOf.js";
+import { class2type } from "./var/class2type.js";
+import { toString } from "./var/toString.js";
+import { hasOwn } from "./var/hasOwn.js";
+import { fnToString } from "./var/fnToString.js";
+import { ObjectFunctionString } from "./var/ObjectFunctionString.js";
+import { support } from "./var/support.js";
+import { isArrayLike } from "./core/isArrayLike.js";
+import { DOMEval } from "./core/DOMEval.js";
var version = "@VERSION",
@@ -416,4 +416,4 @@ jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symb
class2type[ "[object " + name + "]" ] = name.toLowerCase();
} );
-export default jQuery;
+export { jQuery, jQuery as $ };