]> source.dussan.org Git - jquery.git/commitdiff
Core: Use named exports in `src/`
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>
Tue, 12 Sep 2023 00:27:19 +0000 (02:27 +0200)
committerGitHub <noreply@github.com>
Tue, 12 Sep 2023 00:27:19 +0000 (02:27 +0200)
The `default` export is treated differently across tooling when transpiled
to CommonJS - tools differ on whether `module.exports` represents the full
module object or just its default export. Switch `src/` modules to named
exports for tooling consistency.

Fixes gh-5262
Closes gh-5292

136 files changed:
build/tasks/build.js
src/ajax.js
src/ajax/binary.js
src/ajax/jsonp.js
src/ajax/load.js
src/ajax/script.js
src/ajax/var/location.js
src/ajax/var/nonce.js
src/ajax/var/rquery.js
src/ajax/xhr.js
src/attributes.js
src/attributes/attr.js
src/attributes/classes.js
src/attributes/prop.js
src/attributes/val.js
src/callbacks.js
src/core.js
src/core/DOMEval.js
src/core/access.js
src/core/camelCase.js
src/core/init.js
src/core/isArrayLike.js
src/core/isAttached.js
src/core/isObviousHtml.js
src/core/nodeName.js
src/core/parseHTML.js
src/core/parseXML.js
src/core/ready-no-deferred.js
src/core/ready.js
src/core/readyException.js
src/core/stripAndCollapse.js
src/core/toType.js
src/core/var/rsingleTag.js
src/css.js
src/css/adjustCSS.js
src/css/cssCamelCase.js
src/css/curCSS.js
src/css/finalPropName.js
src/css/hiddenVisibleSelectors.js
src/css/isAutoPx.js
src/css/showHide.js
src/css/support.js
src/css/var/cssExpand.js
src/css/var/getStyles.js
src/css/var/isHiddenWithinTree.js
src/css/var/rcustomProp.js
src/css/var/rnumnonpx.js
src/css/var/swap.js
src/data.js
src/data/Data.js
src/data/var/acceptData.js
src/data/var/dataPriv.js
src/data/var/dataUser.js
src/deferred.js
src/deferred/exceptionHook.js
src/deprecated.js
src/deprecated/ajax-event-alias.js
src/deprecated/event.js
src/dimensions.js
src/effects.js
src/effects/Tween.js
src/effects/animatedSelector.js
src/event.js
src/event/trigger.js
src/exports/amd.js
src/exports/global.js
src/jquery.js
src/manipulation.js
src/manipulation/_evalUrl.js
src/manipulation/buildFragment.js
src/manipulation/domManip.js
src/manipulation/getAll.js
src/manipulation/setGlobalEval.js
src/manipulation/var/rscriptType.js
src/manipulation/var/rtagName.js
src/manipulation/wrapMap.js
src/offset.js
src/queue.js
src/queue/delay.js
src/selector-native.js
src/selector.js
src/selector/createCache.js
src/selector/escapeSelector.js
src/selector/filterMatchExpr.js
src/selector/preFilter.js
src/selector/rbuggyQSA.js
src/selector/selectorError.js
src/selector/support.js
src/selector/testContext.js
src/selector/toSelector.js
src/selector/tokenize.js
src/selector/unescapeSelector.js
src/selector/uniqueSort.js
src/selector/var/attributes.js
src/selector/var/booleans.js
src/selector/var/identifier.js
src/selector/var/matches.js
src/selector/var/pseudos.js
src/selector/var/rcomma.js
src/selector/var/rdescend.js
src/selector/var/rleadingCombinator.js
src/selector/var/rpseudo.js
src/selector/var/rsibling.js
src/serialize.js
src/traversing.js
src/traversing/findFilter.js
src/traversing/var/dir.js
src/traversing/var/rneedsContext.js
src/traversing/var/siblings.js
src/var/ObjectFunctionString.js
src/var/arr.js
src/var/class2type.js
src/var/document.js
src/var/documentElement.js
src/var/flat.js
src/var/fnToString.js
src/var/getProto.js
src/var/hasOwn.js
src/var/indexOf.js
src/var/isIE.js
src/var/isWindow.js
src/var/pnum.js
src/var/pop.js
src/var/push.js
src/var/rcheckableType.js
src/var/rcssNum.js
src/var/rnothtmlwhite.js
src/var/rtrim.js
src/var/slice.js
src/var/sort.js
src/var/splice.js
src/var/support.js
src/var/toString.js
src/var/whitespace.js
src/wrap.js
test/jquery.js

index 79498d012a3af2d4aa2fc43ee4f71de86d349442..3fc37da8ac1e57397afd37098273999083451409 100644 (file)
@@ -221,7 +221,7 @@ module.exports = function( grunt ) {
                        // Remove the jQuery export from the entry file, we'll use our own
                        // custom wrapper.
                        setOverride( inputRollupOptions.input,
-                               read( inputFileName ).replace( /\n*export default jQuery;\n*/, "\n" ) );
+                               read( inputFileName ).replace( /\n*export \{ jQuery, jQuery as \$ };\n*/, "\n" ) );
 
                        // Replace exports/global with a noop noConflict
                        if ( excluded.includes( "exports/global" ) ) {
index db4e301959f3132d9e8152308f6a34c7d6a9c6ad..ab96c3625a69f2caf94d87780ccc93981f2163ee 100644 (file)
@@ -1,9 +1,9 @@
-import jQuery from "./core.js";
-import document from "./var/document.js";
-import rnothtmlwhite from "./var/rnothtmlwhite.js";
-import location from "./ajax/var/location.js";
-import nonce from "./ajax/var/nonce.js";
-import rquery from "./ajax/var/rquery.js";
+import { jQuery } from "./core.js";
+import { document } from "./var/document.js";
+import { rnothtmlwhite } from "./var/rnothtmlwhite.js";
+import { location } from "./ajax/var/location.js";
+import { nonce } from "./ajax/var/nonce.js";
+import { rquery } from "./ajax/var/rquery.js";
 
 import "./core/init.js";
 import "./core/parseXML.js";
@@ -874,4 +874,4 @@ jQuery.ajaxPrefilter( function( s ) {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index f629c52f713d86ff1b100934bd5e39383de7f797..96fc5a469e0c1cb8b832768aaf17973abd7a1b1e 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../ajax.js";
 
index e115fdafcdcf6ee886c1daa646ca7f9709deded8..add5a5c9ce4ec1fc227f01b30a22b5e8d58257e0 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../core.js";
-import nonce from "./var/nonce.js";
-import rquery from "./var/rquery.js";
+import { jQuery } from "../core.js";
+import { nonce } from "./var/nonce.js";
+import { rquery } from "./var/rquery.js";
 
 import "../ajax.js";
 
index 9a91b990b7f757147352972238fb955f6b416062..044dc09ddec6f9064edbf044e801bcf77bfeffe5 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "../core.js";
-import stripAndCollapse from "../core/stripAndCollapse.js";
+import { jQuery } from "../core.js";
+import { stripAndCollapse } from "../core/stripAndCollapse.js";
 
 import "../core/parseHTML.js";
 import "../ajax.js";
index aa8ddb4c53218806e0f6c6ffd46d9a06c8fbe04b..3c88c1af305f4b283bf95b3733039d03c546ca68 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "../core.js";
-import document from "../var/document.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
 
 import "../ajax.js";
 
index 78e6f07b338c2d787b0a46eee08e6941b284c24b..316b1984510d3f51d74f5a8aa10472ea4b6f0edc 100644 (file)
@@ -1 +1 @@
-export default window.location;
+export var location = window.location;
index b0070c699fa8d5439ae8f0997e4175e0f23c3099..9b3d3e83a6bf585b1cd134876c735fd6951ab8e7 100644 (file)
@@ -1 +1 @@
-export default { guid: Date.now() };
+export var nonce = { guid: Date.now() };
index f18f8766197aab2d493ad227973d1b97d2385215..e694e82557ec99930e7efb25a37c059d4c6925eb 100644 (file)
@@ -1 +1 @@
-export default ( /\?/ );
+export var rquery = /\?/;
index 528a5c74838bc0112ecd13727b40423a44d2993d..c7b057a6efa0a219369098c3c7ebf98617594214 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../ajax.js";
 
index 646107adcc1b5a73575112a997680d491f3173c4..278d5130616a5e5bae028b354ebf0b4c06ed2b31 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "./core.js";
+import { jQuery } from "./core.js";
 
 import "./attributes/attr.js";
 import "./attributes/prop.js";
@@ -6,4 +6,4 @@ import "./attributes/classes.js";
 import "./attributes/val.js";
 
 // Return jQuery for attributes-only inclusion
-export default jQuery;
+export { jQuery, jQuery as $ };
index d6d497735a189a6d3be461fbb00b09561c69e21b..fb6c3bd7b8e8b9ecccb38633ab14a39bae614074 100644 (file)
@@ -1,8 +1,8 @@
-import jQuery from "../core.js";
-import access from "../core/access.js";
-import nodeName from "../core/nodeName.js";
-import rnothtmlwhite from "../var/rnothtmlwhite.js";
-import isIE from "../var/isIE.js";
+import { jQuery } from "../core.js";
+import { access } from "../core/access.js";
+import { nodeName } from "../core/nodeName.js";
+import { rnothtmlwhite } from "../var/rnothtmlwhite.js";
+import { isIE } from "../var/isIE.js";
 
 import "../selector.js";
 
index 5e64ea2ae42525e9fd7bd3ddac5a1c0c70aa507a..fa2b7d9cd1c579c28d3773748ed335472ada3186 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../core.js";
-import stripAndCollapse from "../core/stripAndCollapse.js";
-import rnothtmlwhite from "../var/rnothtmlwhite.js";
+import { jQuery } from "../core.js";
+import { stripAndCollapse } from "../core/stripAndCollapse.js";
+import { rnothtmlwhite } from "../var/rnothtmlwhite.js";
 
 import "../core/init.js";
 
index 3c180593fe64df8d3707143efb9bff41212e3f9e..f889e5373c382fdba4a31a7c2f563b9fc2de05ce 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../core.js";
-import access from "../core/access.js";
-import isIE from "../var/isIE.js";
+import { jQuery } from "../core.js";
+import { access } from "../core/access.js";
+import { isIE } from "../var/isIE.js";
 
 import "../selector.js";
 
index 536ed88a4fce0af17a1e1c1bd3e1c52c8403fbf9..34d1669fcbbf945157b71285818960089cd31009 100644 (file)
@@ -1,7 +1,7 @@
-import jQuery from "../core.js";
-import isIE from "../var/isIE.js";
-import stripAndCollapse from "../core/stripAndCollapse.js";
-import nodeName from "../core/nodeName.js";
+import { jQuery } from "../core.js";
+import { isIE } from "../var/isIE.js";
+import { stripAndCollapse } from "../core/stripAndCollapse.js";
+import { nodeName } from "../core/nodeName.js";
 
 import "../core/init.js";
 
index 19b3d7c1cf13d0fbec3f6469da5064b8c5e05a37..e4f05e7988a8a0140e9de52e4e2089de73a3f872 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "./core.js";
-import toType from "./core/toType.js";
-import rnothtmlwhite from "./var/rnothtmlwhite.js";
+import { jQuery } from "./core.js";
+import { toType } from "./core/toType.js";
+import { rnothtmlwhite } from "./var/rnothtmlwhite.js";
 
 // Convert String-formatted options into Object-formatted ones
 function createOptions( options ) {
@@ -227,4 +227,4 @@ jQuery.Callbacks = function( options ) {
        return self;
 };
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 8ed56b7e803e9d5212e2d795c587578a3ad980cb..c7945550719cdf830243be18ae2298490fd33091 100644 (file)
@@ -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 $ };
index 059464188d13fb038ce2882c09cd8bf606e39e24..806f29ebe9a564b149fbd450de01e68106c0287d 100644 (file)
@@ -1,4 +1,4 @@
-import document from "../var/document.js";
+import { document } from "../var/document.js";
 
 var preservedScriptAttributes = {
        type: true,
@@ -7,7 +7,7 @@ var preservedScriptAttributes = {
        noModule: true
 };
 
-function DOMEval( code, node, doc ) {
+export function DOMEval( code, node, doc ) {
        doc = doc || document;
 
        var i,
@@ -23,5 +23,3 @@ function DOMEval( code, node, doc ) {
        }
        doc.head.appendChild( script ).parentNode.removeChild( script );
 }
-
-export default DOMEval;
index 6b717b9ba4b96945c8c4b3755d914d1837e53681..86bac126c529683e2691f641a0b98eba696d8417 100644 (file)
@@ -1,9 +1,9 @@
-import jQuery from "../core.js";
-import toType from "../core/toType.js";
+import { jQuery } from "../core.js";
+import { toType } from "../core/toType.js";
 
 // Multifunctional method to get and set values of a collection
 // The value/s can optionally be executed if it's a function
-var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
+export function access( elems, fn, key, value, chainable, emptyGet, raw ) {
        var i = 0,
                len = elems.length,
                bulk = key == null;
@@ -60,6 +60,4 @@ var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
        }
 
        return len ? fn( elems[ 0 ], key ) : emptyGet;
-};
-
-export default access;
+}
index f12a2c67d128ca17e5b1beed87e76a4699c96512..dca86fc33b9fcb49556ce41e443beb62d2ec21fb 100644 (file)
@@ -7,8 +7,6 @@ function fcamelCase( _all, letter ) {
 }
 
 // Convert dashed to camelCase
-function camelCase( string ) {
+export function camelCase( string ) {
        return string.replace( rdashAlpha, fcamelCase );
 }
-
-export default camelCase;
index 4ac091054d74e07acde103decb247680f8db3f97..9c94547266c48694b3e72f9096295bddc7bd5d19 100644 (file)
@@ -1,8 +1,8 @@
 // Initialize a jQuery object
-import jQuery from "../core.js";
-import document from "../var/document.js";
-import rsingleTag from "./var/rsingleTag.js";
-import isObviousHtml from "./isObviousHtml.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
+import { rsingleTag } from "./var/rsingleTag.js";
+import { isObviousHtml } from "./isObviousHtml.js";
 
 import "../traversing/findFilter.js";
 
index 988c483d335105bae899e3896d6e1b4ba23013b9..bc24b32f4529880101a0562087c34cc291b97435 100644 (file)
@@ -1,7 +1,7 @@
-import toType from "./toType.js";
-import isWindow from "../var/isWindow.js";
+import { toType } from "./toType.js";
+import { isWindow } from "../var/isWindow.js";
 
-function isArrayLike( obj ) {
+export function isArrayLike( obj ) {
 
        var length = !!obj && obj.length,
                type = toType( obj );
@@ -13,5 +13,3 @@ function isArrayLike( obj ) {
        return type === "array" || length === 0 ||
                typeof length === "number" && length > 0 && ( length - 1 ) in obj;
 }
-
-export default isArrayLike;
index 72c7bbda4035d463f19495d3dbdc948cdf7b3613..12a60ee92f52de1ddb2a13acdb12356cbec6c9e8 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "../core.js";
-import documentElement from "../var/documentElement.js";
+import { jQuery } from "../core.js";
+import { documentElement } from "../var/documentElement.js";
 
 var isAttached = function( elem ) {
                return jQuery.contains( elem.ownerDocument, elem ) ||
@@ -16,4 +16,4 @@ if ( !documentElement.getRootNode ) {
        };
 }
 
-export default isAttached;
+export { isAttached };
index 976f81219eb8ef0fbbb0a1ab79ef97a275596b22..715b47c1b33f4249be1abb2bd96e1dc67cea43ba 100644 (file)
@@ -1,7 +1,5 @@
-function isObviousHtml( input ) {
+export function isObviousHtml( input ) {
        return input[ 0 ] === "<" &&
                input[ input.length - 1 ] === ">" &&
                input.length >= 3;
 }
-
-export default isObviousHtml;
index ac90c60757fae8d0e2c726831a096d352bc3133f..014672b87746c6220316679d6a472b96299870a5 100644 (file)
@@ -1,7 +1,3 @@
-function nodeName( elem, name ) {
-
+export function nodeName( elem, name ) {
        return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
-
 }
-
-export default nodeName;
index b522a5f7be4484f111d1c1a970aa20cb021bc031..6de02e8b6f16e014c3c6a5a417f0287c8f62d497 100644 (file)
@@ -1,8 +1,8 @@
-import jQuery from "../core.js";
-import document from "../var/document.js";
-import rsingleTag from "./var/rsingleTag.js";
-import buildFragment from "../manipulation/buildFragment.js";
-import isObviousHtml from "./isObviousHtml.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
+import { rsingleTag } from "./var/rsingleTag.js";
+import { buildFragment } from "../manipulation/buildFragment.js";
+import { isObviousHtml } from "./isObviousHtml.js";
 
 // Argument "data" should be string of html or a TrustedHTML wrapper of obvious HTML
 // context (optional): If specified, the fragment will be created in this context,
index 482545aafc54b1c960a3a45028c39f8274e1825d..fa1b94c00d4d607fd283ddad08fa78ecd07398dc 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 // Cross-browser xml parsing
 jQuery.parseXML = function( data ) {
index 17aaf5bcddd1cc0db66e8b6372504005b86dcc7e..e46ecacd1663ec5ea35580ad4b93564e7cbad0e9 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "../core.js";
-import document from "../var/document.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
 
 var readyCallbacks = [],
        whenReady = function( fn ) {
index 88dcc343325bb2f498b703f9f51902c522439a3b..5265a52b0b609309cc964b148efdf9716e1f5aba 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "../core.js";
-import document from "../var/document.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
 
 import "../core/readyException.js";
 import "../deferred.js";
index 1b5512c15f2a10a58f2930df74e10cf0b8fb4a84..ff5296a3ce02f0f2cdd756985a16ca92a9959966 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 jQuery.readyException = function( error ) {
        window.setTimeout( function() {
index 944a79362d2eaadefba3a8d29162bb55f203a6c3..c9a73c6fa27406df325ec78bb475d092a28c847a 100644 (file)
@@ -1,10 +1,8 @@
-import rnothtmlwhite from "../var/rnothtmlwhite.js";
+import { rnothtmlwhite } from "../var/rnothtmlwhite.js";
 
 // Strip and collapse whitespace according to HTML spec
 // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
-function stripAndCollapse( value ) {
+export function stripAndCollapse( value ) {
        var tokens = value.match( rnothtmlwhite ) || [];
        return tokens.join( " " );
 }
-
-export default stripAndCollapse;
index 67af8a67ff590841201798b561c35d9e24eb6755..9df6c02a456f031284e553ed321caf3393c78463 100644 (file)
@@ -1,7 +1,7 @@
-import class2type from "../var/class2type.js";
-import toString from "../var/toString.js";
+import { class2type } from "../var/class2type.js";
+import { toString } from "../var/toString.js";
 
-function toType( obj ) {
+export function toType( obj ) {
        if ( obj == null ) {
                return obj + "";
        }
@@ -10,5 +10,3 @@ function toType( obj ) {
                class2type[ toString.call( obj ) ] || "object" :
                typeof obj;
 }
-
-export default toType;
index 5bf52d5684f316dfd2ae19820a3a26dba10f81aa..8cead250f03c6e8741ee0382067fd14f3023c4fd 100644 (file)
@@ -1,3 +1,3 @@
 // rsingleTag matches a string consisting of a single HTML element with no attributes
 // and captures the element's name
-export default ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
+export var rsingleTag = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;
index a69ad173096b0304059aed809682ee22c43fab8f..f5407470f930c0000e7342284acfec96f6e5e850 100644 (file)
@@ -1,19 +1,19 @@
-import jQuery from "./core.js";
-import access from "./core/access.js";
-import nodeName from "./core/nodeName.js";
-import rcssNum from "./var/rcssNum.js";
-import isIE from "./var/isIE.js";
-import rnumnonpx from "./css/var/rnumnonpx.js";
-import rcustomProp from "./css/var/rcustomProp.js";
-import cssExpand from "./css/var/cssExpand.js";
-import isAutoPx from "./css/isAutoPx.js";
-import cssCamelCase from "./css/cssCamelCase.js";
-import getStyles from "./css/var/getStyles.js";
-import swap from "./css/var/swap.js";
-import curCSS from "./css/curCSS.js";
-import adjustCSS from "./css/adjustCSS.js";
-import finalPropName from "./css/finalPropName.js";
-import support from "./css/support.js";
+import { jQuery } from "./core.js";
+import { access } from "./core/access.js";
+import { nodeName } from "./core/nodeName.js";
+import { rcssNum } from "./var/rcssNum.js";
+import { isIE } from "./var/isIE.js";
+import { rnumnonpx } from "./css/var/rnumnonpx.js";
+import { rcustomProp } from "./css/var/rcustomProp.js";
+import { cssExpand } from "./css/var/cssExpand.js";
+import { isAutoPx } from "./css/isAutoPx.js";
+import { cssCamelCase } from "./css/cssCamelCase.js";
+import { getStyles } from "./css/var/getStyles.js";
+import { swap } from "./css/var/swap.js";
+import { curCSS } from "./css/curCSS.js";
+import { adjustCSS } from "./css/adjustCSS.js";
+import { finalPropName } from "./css/finalPropName.js";
+import { support } from "./css/support.js";
 
 import "./core/init.js";
 import "./core/ready.js";
@@ -418,4 +418,4 @@ jQuery.fn.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index d973ff3869caef5ee4426c1943a66393657dbeab..a5263f099c8386a4d47e391245f61aefb2191aaf 100644 (file)
@@ -1,8 +1,8 @@
-import jQuery from "../core.js";
-import isAutoPx from "./isAutoPx.js";
-import rcssNum from "../var/rcssNum.js";
+import { jQuery } from "../core.js";
+import { isAutoPx } from "./isAutoPx.js";
+import { rcssNum } from "../var/rcssNum.js";
 
-function adjustCSS( elem, prop, valueParts, tween ) {
+export function adjustCSS( elem, prop, valueParts, tween ) {
        var adjusted, scale,
                maxIterations = 20,
                currentValue = tween ?
@@ -66,5 +66,3 @@ function adjustCSS( elem, prop, valueParts, tween ) {
        }
        return adjusted;
 }
-
-export default adjustCSS;
index c75dcd9503554c6f2037cd68dcf94156bbd5a0a6..a87897989cd7fd2418e11c72dbec573e50c7372b 100644 (file)
@@ -1,4 +1,4 @@
-import camelCase from "../core/camelCase.js";
+import { camelCase } from "../core/camelCase.js";
 
 // Matches dashed string for camelizing
 var rmsPrefix = /^-ms-/;
@@ -7,8 +7,6 @@ var rmsPrefix = /^-ms-/;
 // Used by the css & effects modules.
 // Support: IE <=9 - 11+
 // Microsoft forgot to hump their vendor prefix (trac-9572)
-function cssCamelCase( string ) {
+export function cssCamelCase( string ) {
        return camelCase( string.replace( rmsPrefix, "ms-" ) );
 }
-
-export default cssCamelCase;
index 72c3db9f585d90ecca7c0e783b71931d147905d9..06394f315106cdade578db44c9a3ed95fe3b11b0 100644 (file)
@@ -1,10 +1,10 @@
-import jQuery from "../core.js";
-import isAttached from "../core/isAttached.js";
-import getStyles from "./var/getStyles.js";
-import rcustomProp from "./var/rcustomProp.js";
-import rtrim from "../var/rtrim.js";
+import { jQuery } from "../core.js";
+import { isAttached } from "../core/isAttached.js";
+import { getStyles } from "./var/getStyles.js";
+import { rcustomProp } from "./var/rcustomProp.js";
+import { rtrim } from "../var/rtrim.js";
 
-function curCSS( elem, name, computed ) {
+export function curCSS( elem, name, computed ) {
        var ret,
                isCustomProp = rcustomProp.test( name );
 
@@ -57,5 +57,3 @@ function curCSS( elem, name, computed ) {
                ret + "" :
                ret;
 }
-
-export default curCSS;
index 40d2fb193f594e348f3fb2e2fce3f371fc3bcfcc..b11e923940d26f1564e50d2d5dd6cd46bd4c2687 100644 (file)
@@ -1,4 +1,4 @@
-import document from "../var/document.js";
+import { document } from "../var/document.js";
 
 var cssPrefixes = [ "Webkit", "Moz", "ms" ],
        emptyStyle = document.createElement( "div" ).style,
@@ -20,7 +20,7 @@ function vendorPropName( name ) {
 }
 
 // Return a potentially-mapped vendor prefixed property
-function finalPropName( name ) {
+export function finalPropName( name ) {
        var final = vendorProps[ name ];
 
        if ( final ) {
@@ -31,5 +31,3 @@ function finalPropName( name ) {
        }
        return vendorProps[ name ] = vendorPropName( name ) || name;
 }
-
-export default finalPropName;
index 1f892dfe007242138f6cfade11833561493373a0..5e0709481e358965e1cb092e1880a6c7246d92b9 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../selector.js";
 
index ca9b35acaf7351afc9da0285bfa31b69568e871b..96501be01d09ea52d3dae6d13b4a0fc2a03072a4 100644 (file)
@@ -23,7 +23,7 @@ var ralphaStart = /^[a-z]/,
        //                           \ Max /       \ Height /
        rautoPx = /^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/;
 
-function isAutoPx( prop ) {
+export function isAutoPx( prop ) {
 
        // The first test is used to ensure that:
        // 1. The prop starts with a lowercase letter (as we uppercase it for the second regex).
@@ -31,5 +31,3 @@ function isAutoPx( prop ) {
        return ralphaStart.test( prop ) &&
                rautoPx.test( prop[ 0 ].toUpperCase() + prop.slice( 1 ) );
 }
-
-export default isAutoPx;
index dc273f98c61eb326eb65427a3f770baf35207354..77ddc5bdbaec76907c2400f675daf7d29a46027e 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../core.js";
-import dataPriv from "../data/var/dataPriv.js";
-import isHiddenWithinTree from "../css/var/isHiddenWithinTree.js";
+import { jQuery } from "../core.js";
+import { dataPriv } from "../data/var/dataPriv.js";
+import { isHiddenWithinTree } from "../css/var/isHiddenWithinTree.js";
 
 var defaultDisplayMap = {};
 
@@ -27,7 +27,7 @@ function getDefaultDisplay( elem ) {
        return display;
 }
 
-function showHide( elements, show ) {
+export function showHide( elements, show ) {
        var display, elem,
                values = [],
                index = 0,
@@ -96,5 +96,3 @@ jQuery.fn.extend( {
                } );
        }
 } );
-
-export default showHide;
index cf9f0cfcd56a57b1d0791e6fced342ad6def011e..5f9b37d7f4bff96b65691df843934dba621ec74c 100644 (file)
@@ -1,6 +1,6 @@
-import document from "../var/document.js";
-import documentElement from "../var/documentElement.js";
-import support from "../var/support.js";
+import { document } from "../var/document.js";
+import { documentElement } from "../var/documentElement.js";
+import { support } from "../var/support.js";
 
 ( function() {
 
@@ -58,4 +58,4 @@ support.reliableTrDimensions = function() {
 };
 } )();
 
-export default support;
+export { support };
index 66062e2ee220d2d000c2290cbcfd7933804de1b7..10f4e89d28b3cca002b4b80b2ec957221de7c4e6 100644 (file)
@@ -1 +1 @@
-export default [ "Top", "Right", "Bottom", "Left" ];
+export var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
index d25af675268e60a68026a7f11accdbff4c3f22e1..9dc4298d562eee77935f39f24042f021ffd9896e 100644 (file)
@@ -1,4 +1,4 @@
-export default function( elem ) {
+export function getStyles( elem ) {
 
        // Support: IE <=11+ (trac-14150)
        // In IE popup's `window` is the opener window which makes `window.getComputedStyle( elem )`
index c88747827dab1324707cf98a9cbfb3548bd42b7a..22b8221f9f63d3916ab91f53ec931b303f745f38 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../../core.js";
+import { jQuery } from "../../core.js";
 
 // isHiddenWithinTree reports if an element has a non-"none" display style (inline and/or
 // through the CSS cascade), which is useful in deciding whether or not to make it visible.
@@ -7,7 +7,7 @@ import jQuery from "../../core.js";
 // * Being disconnected from the document does not force an element to be classified as hidden.
 // These differences improve the behavior of .toggle() et al. when applied to elements that are
 // detached or contained within hidden ancestors (gh-2404, gh-2863).
-export default function( elem, el ) {
+export function isHiddenWithinTree( elem, el ) {
 
        // isHiddenWithinTree might be called from jQuery#filter function;
        // in that case, element will be second argument
index f435e7cd7bbacdb67a69504d0465e2871ce69dda..18b8686c4f170a5a51629d866d651e088c7b818b 100644 (file)
@@ -1 +1 @@
-export default ( /^--/ );
+export var rcustomProp = /^--/;
index 18a9dad6c81da7ae69f2ad3cb1fa32c086f792ac..0386b00548aea381b301752726c54247cd1552a1 100644 (file)
@@ -1,3 +1,3 @@
-import pnum from "../../var/pnum.js";
+import { pnum } from "../../var/pnum.js";
 
-export default new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
+export var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
index f5d8f23ab591a7630fdb6ca3c0cc92dad26b4d02..90b31d58444afd8c2863d785858b691ca35d83f0 100644 (file)
@@ -1,5 +1,5 @@
 // A method for quickly swapping in/out CSS properties to get correct calculations.
-export default function( elem, options, callback ) {
+export function swap( elem, options, callback ) {
        var ret, name,
                old = {};
 
index e3e8eabe1089693b9842232516047d9089dc2c44..ce2813e972216bee23eb95873d41a48ff9eff5f2 100644 (file)
@@ -1,8 +1,8 @@
-import jQuery from "./core.js";
-import access from "./core/access.js";
-import camelCase from "./core/camelCase.js";
-import dataPriv from "./data/var/dataPriv.js";
-import dataUser from "./data/var/dataUser.js";
+import { jQuery } from "./core.js";
+import { access } from "./core/access.js";
+import { camelCase } from "./core/camelCase.js";
+import { dataPriv } from "./data/var/dataPriv.js";
+import { dataUser } from "./data/var/dataUser.js";
 
 //     Implementation Summary
 //
@@ -172,4 +172,4 @@ jQuery.fn.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 8c9e1f9f88f88f0b99d6bd57762e09824090c955..2a3ccbd146be272a2ae8321eab3a2f469c750f29 100644 (file)
@@ -1,9 +1,9 @@
-import jQuery from "../core.js";
-import camelCase from "../core/camelCase.js";
-import rnothtmlwhite from "../var/rnothtmlwhite.js";
-import acceptData from "./var/acceptData.js";
+import { jQuery } from "../core.js";
+import { camelCase } from "../core/camelCase.js";
+import { rnothtmlwhite } from "../var/rnothtmlwhite.js";
+import { acceptData } from "./var/acceptData.js";
 
-function Data() {
+export function Data() {
        this.expando = jQuery.expando + Data.uid++;
 }
 
@@ -153,5 +153,3 @@ Data.prototype = {
                return cache !== undefined && !jQuery.isEmptyObject( cache );
        }
 };
-
-export default Data;
index 6b154c5b3e1e03430ab7ed6f48da0c7f8413791e..dbb93ee927f3bca0a8937bb9f3cd022aac59125f 100644 (file)
@@ -1,7 +1,7 @@
 /**
  * Determines whether an object can have data
  */
-export default function( owner ) {
+export function acceptData( owner ) {
 
        // Accepts only:
        //  - Node
index 94ea1190e66d239d312cbd8c2f2adca6370ce80e..aaa43bd4e6753e97bce1d2da237dadc5cef960c0 100644 (file)
@@ -1,3 +1,3 @@
-import Data from "../Data.js";
+import { Data } from "../Data.js";
 
-export default new Data();
+export var dataPriv = new Data();
index 94ea1190e66d239d312cbd8c2f2adca6370ce80e..a0504b628b32b24677dd2a360ec4fa7d821ab986 100644 (file)
@@ -1,3 +1,3 @@
-import Data from "../Data.js";
+import { Data } from "../Data.js";
 
-export default new Data();
+export var dataUser = new Data();
index 0d77ac9d614ee703e0b45c44c344673c13df1633..5817ddbc64d49a663556f28d356debf65ce33a54 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "./core.js";
-import slice from "./var/slice.js";
+import { jQuery } from "./core.js";
+import { slice } from "./var/slice.js";
 
 import "./callbacks.js";
 
@@ -389,4 +389,4 @@ jQuery.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index a5e7b5d3ca186e19a5e5db6960f710118b9eaf9c..4967a273dcc5abd550e7ad40b954a8e3d3a9087a 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../deferred.js";
 
index e58156f9ecc79fd72eb180d253baf6bad7aaea1f..b2f767cdf20e9c72f03d00876523bee14a57dcbe 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "./core.js";
-import slice from "./var/slice.js";
+import { jQuery } from "./core.js";
+import { slice } from "./var/slice.js";
 
 import "./deprecated/ajax-event-alias.js";
 import "./deprecated/event.js";
@@ -42,3 +42,5 @@ jQuery.holdReady = function( hold ) {
                jQuery.ready( true );
        }
 };
+
+export { jQuery, jQuery as $ };
index e4fe11525260ed77ac4136acbc70707d2471d87c..134b4f63df734873282793bab67b63ffb8b28e18 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../ajax.js";
 import "../event.js";
index 4f5c59c0a54d2e453d961a57a22fc6cb831e11a7..f481a9c1f17e1d7bee08ec77688a6c491d6cb7e0 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../event.js";
 import "../event/trigger.js";
index 42e445362bb5295722d7efae196e933a2f38a32f..a5e1a612670bdde126cbbe21de530fa1dcc7591f 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "./core.js";
-import access from "./core/access.js";
-import isWindow from "./var/isWindow.js";
+import { jQuery } from "./core.js";
+import { access } from "./core/access.js";
+import { isWindow } from "./var/isWindow.js";
 
 import "./css.js";
 
@@ -53,4 +53,4 @@ jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
        } );
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 49b0bf67d355e0f32bd9ef7ca31dafc2acda2b75..99dbad7bcb8a1a5c2a6afeb2a2a6c6df744c2e4b 100644 (file)
@@ -1,13 +1,13 @@
-import jQuery from "./core.js";
-import document from "./var/document.js";
-import rcssNum from "./var/rcssNum.js";
-import rnothtmlwhite from "./var/rnothtmlwhite.js";
-import cssExpand from "./css/var/cssExpand.js";
-import isHiddenWithinTree from "./css/var/isHiddenWithinTree.js";
-import adjustCSS from "./css/adjustCSS.js";
-import cssCamelCase from "./css/cssCamelCase.js";
-import dataPriv from "./data/var/dataPriv.js";
-import showHide from "./css/showHide.js";
+import { jQuery } from "./core.js";
+import { document } from "./var/document.js";
+import { rcssNum } from "./var/rcssNum.js";
+import { rnothtmlwhite } from "./var/rnothtmlwhite.js";
+import { cssExpand } from "./css/var/cssExpand.js";
+import { isHiddenWithinTree } from "./css/var/isHiddenWithinTree.js";
+import { adjustCSS } from "./css/adjustCSS.js";
+import { cssCamelCase } from "./css/cssCamelCase.js";
+import { dataPriv } from "./data/var/dataPriv.js";
+import { showHide } from "./css/showHide.js";
 
 import "./core/init.js";
 import "./queue.js";
@@ -684,4 +684,4 @@ jQuery.fx.speeds = {
        _default: 400
 };
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index c0220bd10b639f10f3e24e4c8d57cc0fcc17169d..7acd2792ca5e47e7008c2c9c801f8f37e75015c2 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../core.js";
-import isAutoPx from "../css/isAutoPx.js";
-import finalPropName from "../css/finalPropName.js";
+import { jQuery } from "../core.js";
+import { isAutoPx } from "../css/isAutoPx.js";
+import { finalPropName } from "../css/finalPropName.js";
 
 import "../css.js";
 
index 327956f72a0bada8315c44a327c4a56e470fdbed..0e0b377f1c3732a77dd651f9403a8c5d22ea3fe0 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../selector.js";
 import "../effects.js";
index 5d2c8c1c3c12c171c571f84a80c6b7d410b73ed3..0112264a47bc9a0f5b5231da1e27a96a48fce857 100644 (file)
@@ -1,12 +1,12 @@
-import jQuery from "./core.js";
-import documentElement from "./var/documentElement.js";
-import rnothtmlwhite from "./var/rnothtmlwhite.js";
-import rcheckableType from "./var/rcheckableType.js";
-import slice from "./var/slice.js";
-import isIE from "./var/isIE.js";
-import acceptData from "./data/var/acceptData.js";
-import dataPriv from "./data/var/dataPriv.js";
-import nodeName from "./core/nodeName.js";
+import { jQuery } from "./core.js";
+import { documentElement } from "./var/documentElement.js";
+import { rnothtmlwhite } from "./var/rnothtmlwhite.js";
+import { rcheckableType } from "./var/rcheckableType.js";
+import { slice } from "./var/slice.js";
+import { isIE } from "./var/isIE.js";
+import { acceptData } from "./data/var/acceptData.js";
+import { dataPriv } from "./data/var/dataPriv.js";
+import { nodeName } from "./core/nodeName.js";
 
 import "./core/init.js";
 import "./selector.js";
@@ -851,4 +851,4 @@ jQuery.fn.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 5fad460e140a59afdc06a1f4905846dc3018e00a..2b1f5284675d60b1abfebae8253f53d80b844a98 100644 (file)
@@ -1,9 +1,9 @@
-import jQuery from "../core.js";
-import document from "../var/document.js";
-import dataPriv from "../data/var/dataPriv.js";
-import acceptData from "../data/var/acceptData.js";
-import hasOwn from "../var/hasOwn.js";
-import isWindow from "../var/isWindow.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
+import { dataPriv } from "../data/var/dataPriv.js";
+import { acceptData } from "../data/var/acceptData.js";
+import { hasOwn } from "../var/hasOwn.js";
+import { isWindow } from "../var/isWindow.js";
 
 import "../event.js";
 
index 44587ab3a903e8d74a51688b4a15ca8e972fb083..85a66eeabc4a2d27253f7a1d3bef070e3c664dd4 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 // Register as a named AMD module, since jQuery can be concatenated with other
 // files that may use define, but not via a proper concatenation script that
index 965a4b4002d62bf63470f188edc049b13e5821ee..3adcb739ef14d99c38e5471c520311d30ee4dd11 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 var
 
index d833516d45e2b685b3a81755f939b9261fda7a81..e763d1b056b934fc231943e6cafb02ccbc4a6110 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "./core.js";
+import { jQuery } from "./core.js";
 
 import "./selector.js";
 import "./traversing.js";
@@ -35,4 +35,4 @@ import "./deprecated.js";
 import "./exports/amd.js";
 import "./exports/global.js";
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index d3ee1130fe9b3e4231dc7a22c1c658a487dd0ee4..0a72094128b0ba62bd23b11e5a5d4f36410b395f 100644 (file)
@@ -1,17 +1,17 @@
-import jQuery from "./core.js";
-import isAttached from "./core/isAttached.js";
-import isIE from "./var/isIE.js";
-import push from "./var/push.js";
-import access from "./core/access.js";
-import rtagName from "./manipulation/var/rtagName.js";
-import wrapMap from "./manipulation/wrapMap.js";
-import getAll from "./manipulation/getAll.js";
-import domManip from "./manipulation/domManip.js";
-import setGlobalEval from "./manipulation/setGlobalEval.js";
-import dataPriv from "./data/var/dataPriv.js";
-import dataUser from "./data/var/dataUser.js";
-import acceptData from "./data/var/acceptData.js";
-import nodeName from "./core/nodeName.js";
+import { jQuery } from "./core.js";
+import { isAttached } from "./core/isAttached.js";
+import { isIE } from "./var/isIE.js";
+import { push } from "./var/push.js";
+import { access } from "./core/access.js";
+import { rtagName } from "./manipulation/var/rtagName.js";
+import { wrapMap } from "./manipulation/wrapMap.js";
+import { getAll } from "./manipulation/getAll.js";
+import { domManip } from "./manipulation/domManip.js";
+import { setGlobalEval } from "./manipulation/setGlobalEval.js";
+import { dataPriv } from "./data/var/dataPriv.js";
+import { dataUser } from "./data/var/dataUser.js";
+import { acceptData } from "./data/var/acceptData.js";
+import { nodeName } from "./core/nodeName.js";
 
 import "./core/init.js";
 import "./traversing.js";
@@ -341,4 +341,4 @@ jQuery.each( {
        };
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 1af889ddceecbc8ac48786ed0dd8a6a39d72e71a..e07bb8d72983886828f143c6ab15ea3b31d48213 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../ajax.js";
+import { jQuery } from "../ajax.js";
 
 jQuery._evalUrl = function( url, options, doc ) {
        return jQuery.ajax( {
index dd0d673e67d8bb606b2c7eca6fd8d10cf16fa650..034ba89f4d47422801cb3667de30f1736400a874 100644 (file)
@@ -1,17 +1,17 @@
-import jQuery from "../core.js";
-import toType from "../core/toType.js";
-import isAttached from "../core/isAttached.js";
-import arr from "../var/arr.js";
-import rtagName from "./var/rtagName.js";
-import rscriptType from "./var/rscriptType.js";
-import wrapMap from "./wrapMap.js";
-import getAll from "./getAll.js";
-import setGlobalEval from "./setGlobalEval.js";
-import isArrayLike from "../core/isArrayLike.js";
+import { jQuery } from "../core.js";
+import { toType } from "../core/toType.js";
+import { isAttached } from "../core/isAttached.js";
+import { arr } from "../var/arr.js";
+import { rtagName } from "./var/rtagName.js";
+import { rscriptType } from "./var/rscriptType.js";
+import { wrapMap } from "./wrapMap.js";
+import { getAll } from "./getAll.js";
+import { setGlobalEval } from "./setGlobalEval.js";
+import { isArrayLike } from "../core/isArrayLike.js";
 
 var rhtml = /<|&#?\w+;/;
 
-function buildFragment( elems, context, scripts, selection, ignored ) {
+export function buildFragment( elems, context, scripts, selection, ignored ) {
        var elem, tmp, tag, wrap, attached, j,
                fragment = context.createDocumentFragment(),
                nodes = [],
@@ -95,5 +95,3 @@ function buildFragment( elems, context, scripts, selection, ignored ) {
 
        return fragment;
 }
-
-export default buildFragment;
index 65856a67dfdbe1bfa272121931884cf1e89813bc..39c146c89ef1016a9516d7c188ca1f44d89c8240 100644 (file)
@@ -1,10 +1,10 @@
-import jQuery from "../core.js";
-import flat from "../var/flat.js";
-import rscriptType from "./var/rscriptType.js";
-import getAll from "./getAll.js";
-import buildFragment from "./buildFragment.js";
-import dataPriv from "../data/var/dataPriv.js";
-import DOMEval from "../core/DOMEval.js";
+import { jQuery } from "../core.js";
+import { flat } from "../var/flat.js";
+import { rscriptType } from "./var/rscriptType.js";
+import { getAll } from "./getAll.js";
+import { buildFragment } from "./buildFragment.js";
+import { dataPriv } from "../data/var/dataPriv.js";
+import { DOMEval } from "../core/DOMEval.js";
 
 // Replace/restore the type attribute of script elements for safe DOM manipulation
 function disableScript( elem ) {
@@ -21,7 +21,7 @@ function restoreScript( elem ) {
        return elem;
 }
 
-function domManip( collection, args, callback, ignored ) {
+export function domManip( collection, args, callback, ignored ) {
 
        // Flatten any nested arrays
        args = flat( args );
@@ -105,5 +105,3 @@ function domManip( collection, args, callback, ignored ) {
 
        return collection;
 }
-
-export default domManip;
index f4943dfe4df465c249ee9a790adff7526a819c17..db876202d5c453da25786b6220c6deaf65dcb087 100644 (file)
@@ -1,7 +1,7 @@
-import jQuery from "../core.js";
-import nodeName from "../core/nodeName.js";
+import { jQuery } from "../core.js";
+import { nodeName } from "../core/nodeName.js";
 
-function getAll( context, tag ) {
+export function getAll( context, tag ) {
 
        // Support: IE <=9 - 11+
        // Use typeof to avoid zero-argument method invocation on host objects (trac-15151)
@@ -23,5 +23,3 @@ function getAll( context, tag ) {
 
        return ret;
 }
-
-export default getAll;
index c6f7ee9ab948093f1777a61be5841573b1dd67cf..9571bdcfa1fa3237ffdc3141dd2ae59bb7fe0cdb 100644 (file)
@@ -1,7 +1,7 @@
-import dataPriv from "../data/var/dataPriv.js";
+import { dataPriv } from "../data/var/dataPriv.js";
 
 // Mark scripts as having already been evaluated
-function setGlobalEval( elems, refElements ) {
+export function setGlobalEval( elems, refElements ) {
        var i = 0,
                l = elems.length;
 
@@ -13,5 +13,3 @@ function setGlobalEval( elems, refElements ) {
                );
        }
 }
-
-export default setGlobalEval;
index 879651c7cc9b4039e5f8d775e7fc12abfd024864..e3977e94e0fcafc42cdf81b005a9f2dff1797795 100644 (file)
@@ -1 +1 @@
-export default ( /^$|^module$|\/(?:java|ecma)script/i );
+export var rscriptType = /^$|^module$|\/(?:java|ecma)script/i;
index b35acc999dc7d143a53fa81c5a1fcbb28cf195fa..fceba67209f5d2af629237088dd122217fd641e3 100644 (file)
@@ -1,4 +1,4 @@
 // rtagName captures the name from the first start tag in a string of HTML
 // https://html.spec.whatwg.org/multipage/syntax.html#tag-open-state
 // https://html.spec.whatwg.org/multipage/syntax.html#tag-name-state
-export default ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
+export var rtagName = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i;
index 457902595c34bd4107d5033eef23877354494e42..a69bcec863144b9ae77b19efba5288c63f09b803 100644 (file)
@@ -1,4 +1,4 @@
-var wrapMap = {
+export var wrapMap = {
 
        // Table parts need to be wrapped with `<table>` or they're
        // stripped to their contents when put in a div.
@@ -13,5 +13,3 @@ var wrapMap = {
 
 wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
 wrapMap.th = wrapMap.td;
-
-export default wrapMap;
index 7d98083b9e6b5a6fb9bee5ab1557bb9a1aac40da..5a9d3c32e749efc3d58ecabc66dfbb5ee0ec3198 100644 (file)
@@ -1,7 +1,7 @@
-import jQuery from "./core.js";
-import access from "./core/access.js";
-import documentElement from "./var/documentElement.js";
-import isWindow from "./var/isWindow.js";
+import { jQuery } from "./core.js";
+import { access } from "./core/access.js";
+import { documentElement } from "./var/documentElement.js";
+import { isWindow } from "./var/isWindow.js";
 
 import "./core/init.js";
 import "./css.js";
@@ -198,4 +198,4 @@ jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(
        };
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 0028d7e7f5e76b3a38e413fa9f75b64363107d85..3621eaf45130c137307ec75802ca17c9d96b783d 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "./core.js";
-import dataPriv from "./data/var/dataPriv.js";
+import { jQuery } from "./core.js";
+import { dataPriv } from "./data/var/dataPriv.js";
 
 import "./deferred.js";
 import "./callbacks.js";
@@ -138,4 +138,4 @@ jQuery.fn.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 79c2aca8093baf7b22401c9cee91a09ebc38ab29..f2b8d9cd092eef49d06bdbed877eb4dbb9d7dd67 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 import "../queue.js";
 import "../effects.js"; // Delay is optional because of this dependency
index 5eb582cfd8b46f7c9077ae936c8b224a13b5a6d5..afb60f2270a1e5c4627fb51e86d2696863739105 100644 (file)
  * needs.
  */
 
-import jQuery from "./core.js";
-import document from "./var/document.js";
-import whitespace from "./var/whitespace.js";
-import isIE from "./var/isIE.js";
-import booleans from "./selector/var/booleans.js";
-import rleadingCombinator from "./selector/var/rleadingCombinator.js";
-import rdescend from "./selector/var/rdescend.js";
-import rsibling from "./selector/var/rsibling.js";
-import matches from "./selector/var/matches.js";
-import testContext from "./selector/testContext.js";
-import filterMatchExpr from "./selector/filterMatchExpr.js";
-import preFilter from "./selector/preFilter.js";
-import tokenize from "./selector/tokenize.js";
-import toSelector from "./selector/toSelector.js";
+import { jQuery } from "./core.js";
+import { document } from "./var/document.js";
+import { whitespace } from "./var/whitespace.js";
+import { isIE } from "./var/isIE.js";
+import { booleans } from "./selector/var/booleans.js";
+import { rleadingCombinator } from "./selector/var/rleadingCombinator.js";
+import { rdescend } from "./selector/var/rdescend.js";
+import { rsibling } from "./selector/var/rsibling.js";
+import { matches } from "./selector/var/matches.js";
+import { testContext } from "./selector/testContext.js";
+import { filterMatchExpr } from "./selector/filterMatchExpr.js";
+import { preFilter } from "./selector/preFilter.js";
+import { tokenize } from "./selector/tokenize.js";
+import { toSelector } from "./selector/toSelector.js";
 
 // The following utils are attached directly to the jQuery object.
 import "./selector/escapeSelector.js";
@@ -145,3 +145,5 @@ jQuery.extend( jQuery.find, {
        },
        tokenize: tokenize
 } );
+
+export { jQuery, jQuery as $ };
index 52e975c905b3a6847fdb162d928de026fefdd38e..92bfcfed334dc7674f737c9a397a32ed72947724 100644 (file)
@@ -1,27 +1,27 @@
-import jQuery from "./core.js";
-import nodeName from "./core/nodeName.js";
-import document from "./var/document.js";
-import indexOf from "./var/indexOf.js";
-import pop from "./var/pop.js";
-import push from "./var/push.js";
-import whitespace from "./var/whitespace.js";
-import rbuggyQSA from "./selector/rbuggyQSA.js";
-import rtrim from "./var/rtrim.js";
-import isIE from "./var/isIE.js";
-import identifier from "./selector/var/identifier.js";
-import booleans from "./selector/var/booleans.js";
-import rleadingCombinator from "./selector/var/rleadingCombinator.js";
-import rdescend from "./selector/var/rdescend.js";
-import rsibling from "./selector/var/rsibling.js";
-import matches from "./selector/var/matches.js";
-import createCache from "./selector/createCache.js";
-import testContext from "./selector/testContext.js";
-import filterMatchExpr from "./selector/filterMatchExpr.js";
-import preFilter from "./selector/preFilter.js";
-import selectorError from "./selector/selectorError.js";
-import unescapeSelector from "./selector/unescapeSelector.js";
-import tokenize from "./selector/tokenize.js";
-import toSelector from "./selector/toSelector.js";
+import { jQuery } from "./core.js";
+import { nodeName } from "./core/nodeName.js";
+import { document } from "./var/document.js";
+import { indexOf } from "./var/indexOf.js";
+import { pop } from "./var/pop.js";
+import { push } from "./var/push.js";
+import { whitespace } from "./var/whitespace.js";
+import { rbuggyQSA } from "./selector/rbuggyQSA.js";
+import { rtrim } from "./var/rtrim.js";
+import { isIE } from "./var/isIE.js";
+import { identifier } from "./selector/var/identifier.js";
+import { booleans } from "./selector/var/booleans.js";
+import { rleadingCombinator } from "./selector/var/rleadingCombinator.js";
+import { rdescend } from "./selector/var/rdescend.js";
+import { rsibling } from "./selector/var/rsibling.js";
+import { matches } from "./selector/var/matches.js";
+import { createCache } from "./selector/createCache.js";
+import { testContext } from "./selector/testContext.js";
+import { filterMatchExpr } from "./selector/filterMatchExpr.js";
+import { preFilter } from "./selector/preFilter.js";
+import { selectorError } from "./selector/selectorError.js";
+import { unescapeSelector } from "./selector/unescapeSelector.js";
+import { tokenize } from "./selector/tokenize.js";
+import { toSelector } from "./selector/toSelector.js";
 
 // The following utils are attached directly to the jQuery object.
 import "./selector/escapeSelector.js";
@@ -1370,3 +1370,5 @@ find.setDocument = setDocument;
 find.tokenize = tokenize;
 
 } )();
+
+export { jQuery, jQuery as $ };
index 18e255d0f910aa8e457e2093197759e7a362c906..d46985fcbb79496a3778c065ee7169e1a29b44a5 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 /**
  * Create key-value caches of limited size
@@ -6,7 +6,7 @@ import jQuery from "../core.js";
  *     property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
  *     deleting the oldest entry
  */
-function createCache() {
+export function createCache() {
        var keys = [];
 
        function cache( key, value ) {
@@ -22,5 +22,3 @@ function createCache() {
        }
        return cache;
 }
-
-export default createCache;
index bc61355fabb7d4562e6f4bf7bf4799e383a73afd..18c6591489766e270f731823adc360c3581c9567 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "../core.js";
+import { jQuery } from "../core.js";
 
 // CSS string/identifier serialization
 // https://drafts.csswg.org/cssom/#common-serializing-idioms
index 17056a555214f1e1b95bac7b67860be91ef4ca54..65675bd40a3c481c26b3c2c08b726224f63e1ac0 100644 (file)
@@ -1,9 +1,9 @@
-import whitespace from "../var/whitespace.js";
-import identifier from "./var/identifier.js";
-import attributes from "./var/attributes.js";
-import pseudos from "./var/pseudos.js";
+import { whitespace } from "../var/whitespace.js";
+import { identifier } from "./var/identifier.js";
+import { attributes } from "./var/attributes.js";
+import { pseudos } from "./var/pseudos.js";
 
-var filterMatchExpr = {
+export var filterMatchExpr = {
        ID: new RegExp( "^#(" + identifier + ")" ),
        CLASS: new RegExp( "^\\.(" + identifier + ")" ),
        TAG: new RegExp( "^(" + identifier + "|[*])" ),
@@ -14,5 +14,3 @@ var filterMatchExpr = {
                whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" +
                whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" )
 };
-
-export default filterMatchExpr;
index 4a2fb489a2b695fef658c7024bf8bc53aabf0f2d..c6a9cdfc926c2630c0b38b3d5bb57f614263dd95 100644 (file)
@@ -1,10 +1,10 @@
-import rpseudo from "./var/rpseudo.js";
-import filterMatchExpr from "./filterMatchExpr.js";
-import unescapeSelector from "./unescapeSelector.js";
-import selectorError from "./selectorError.js";
-import tokenize from "./tokenize.js";
+import { rpseudo } from "./var/rpseudo.js";
+import { filterMatchExpr } from "./filterMatchExpr.js";
+import { unescapeSelector } from "./unescapeSelector.js";
+import { selectorError } from "./selectorError.js";
+import { tokenize } from "./tokenize.js";
 
-var preFilter = {
+export var preFilter = {
        ATTR: function( match ) {
                match[ 1 ] = unescapeSelector( match[ 1 ] );
 
@@ -86,5 +86,3 @@ var preFilter = {
                return match.slice( 0, 3 );
        }
 };
-
-export default preFilter;
index 674598e83923920e223f59e6654e1ca4352448da..7e4632c7fa8623595aedaeaaea504801671fbfa5 100644 (file)
@@ -1,8 +1,8 @@
-import isIE from "../var/isIE.js";
-import whitespace from "../var/whitespace.js";
-import support from "./support.js";
+import { isIE } from "../var/isIE.js";
+import { whitespace } from "../var/whitespace.js";
+import { support } from "./support.js";
 
-var rbuggyQSA = [];
+export var rbuggyQSA = [];
 
 if ( isIE ) {
        rbuggyQSA.push(
@@ -33,5 +33,3 @@ if ( !support.cssHas ) {
 }
 
 rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) );
-
-export default rbuggyQSA;
index a02e516da3c71394479f0afca1758ea7940a0a2d..69770ec6a8f304122fd63bbd2da6c53ed4e71edb 100644 (file)
@@ -1,5 +1,3 @@
-function selectorError( msg ) {
+export function selectorError( msg ) {
        throw new Error( "Syntax error, unrecognized expression: " + msg );
 }
-
-export default selectorError;
index 5720387473b0858e4c78818f7660bcb1175295d1..685cf3613d356a2e62bf548930affde7db74fe51 100644 (file)
@@ -1,5 +1,5 @@
-import document from "../var/document.js";
-import support from "../var/support.js";
+import { document } from "../var/document.js";
+import { support } from "../var/support.js";
 
 // Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only
 // Make sure the `:has()` argument is parsed unforgivingly.
@@ -17,4 +17,4 @@ try {
        support.cssHas = true;
 }
 
-export default support;
+export { support };
index a54351e64d87332f7bd0fe79f5e83a77acaa7572..cb37629f5cc0d5efb6074fb380ca0a0db4b3622c 100644 (file)
@@ -3,8 +3,6 @@
  * @param {Element|Object=} context
  * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
  */
-function testContext( context ) {
+export function testContext( context ) {
        return context && typeof context.getElementsByTagName !== "undefined" && context;
 }
-
-export default testContext;
index bd0c15f6994cf3d455f18ebf635a4e52f9499aa8..71cdebc2ded92ab2bfccc7c4dde89673fbdf269e 100644 (file)
@@ -1,4 +1,4 @@
-function toSelector( tokens ) {
+export function toSelector( tokens ) {
        var i = 0,
                len = tokens.length,
                selector = "";
@@ -7,5 +7,3 @@ function toSelector( tokens ) {
        }
        return selector;
 }
-
-export default toSelector;
index 34bc9ad50d83f03e98a44cd3949a45038df5d779..3c1e06c460f7d17f017c4819bafb07aac5cefc9f 100644 (file)
@@ -1,14 +1,14 @@
-import jQuery from "../core.js";
-import rcomma from "./var/rcomma.js";
-import rleadingCombinator from "./var/rleadingCombinator.js";
-import rtrim from "../var/rtrim.js";
-import createCache from "./createCache.js";
-import selectorError from "./selectorError.js";
-import filterMatchExpr from "./filterMatchExpr.js";
+import { jQuery } from "../core.js";
+import { rcomma } from "./var/rcomma.js";
+import { rleadingCombinator } from "./var/rleadingCombinator.js";
+import { rtrim } from "../var/rtrim.js";
+import { createCache } from "./createCache.js";
+import { selectorError } from "./selectorError.js";
+import { filterMatchExpr } from "./filterMatchExpr.js";
 
 var tokenCache = createCache();
 
-function tokenize( selector, parseOnly ) {
+export function tokenize( selector, parseOnly ) {
        var matched, match, tokens, type,
                soFar, groups, preFilters,
                cached = tokenCache[ selector + " " ];
@@ -79,5 +79,3 @@ function tokenize( selector, parseOnly ) {
                // Cache the tokens
                tokenCache( selector, groups ).slice( 0 );
 }
-
-export default tokenize;
index 3a01f94bc040d7785d3346a63e0d45cd61f0f5df..05c1d9e7612acf07af78b65978245361e0704d39 100644 (file)
@@ -1,6 +1,6 @@
 // CSS escapes
 // https://www.w3.org/TR/CSS21/syndata.html#escaped-characters
-import whitespace from "../var/whitespace.js";
+import { whitespace } from "../var/whitespace.js";
 
 var runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace +
        "?|\\\\([^\\r\\n\\f])", "g" ),
@@ -22,8 +22,6 @@ var runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace +
                        String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
        };
 
-function unescapeSelector( sel ) {
+export function unescapeSelector( sel ) {
        return sel.replace( runescape, funescape );
 }
-
-export default unescapeSelector;
index 91c7193e989380866a2e0c3a7c4f64acff543457..ef3d6811d99db22fb998278d149647b1ed703302 100644 (file)
@@ -1,8 +1,8 @@
-import jQuery from "../core.js";
-import document from "../var/document.js";
-import sort from "../var/sort.js";
-import splice from "../var/splice.js";
-import slice from "../var/slice.js";
+import { jQuery } from "../core.js";
+import { document } from "../var/document.js";
+import { sort } from "../var/sort.js";
+import { splice } from "../var/splice.js";
+import { slice } from "../var/slice.js";
 
 var hasDuplicate;
 
index f9813acec26acaa27665627b146ca556f0c3fbe4..33ba1ace2063315cf885cb20ae25647f64025284 100644 (file)
@@ -1,8 +1,8 @@
-import whitespace from "../../var/whitespace.js";
-import identifier from "./identifier.js";
+import { whitespace } from "../../var/whitespace.js";
+import { identifier } from "./identifier.js";
 
 // Attribute selectors: https://www.w3.org/TR/selectors/#attribute-selectors
-export default "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
+export var attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
 
        // Operator (capture 2)
        "*([*^$|!~]?=)" + whitespace +
index 9dc3c97c71fe842890fec6a7074241dbc7c92772..bbdc4fdfc2e5384b4fb3e32c72d6b557f7b3702d 100644 (file)
@@ -1,2 +1,2 @@
-export default "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|" +
-       "loop|multiple|open|readonly|required|scoped";
+export var booleans = "checked|selected|async|autofocus|autoplay|controls|" +
+       "defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped";
index 03af0ddf334d4242585e9be1c2fec337462bd71d..d7e77ca4d464473a28390bae75426dd9be9b15bf 100644 (file)
@@ -1,5 +1,5 @@
-import whitespace from "../../var/whitespace.js";
+import { whitespace } from "../../var/whitespace.js";
 
 // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram
-export default "(?:\\\\[\\da-fA-F]{1,6}" + whitespace +
+export var identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace +
        "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+";
index 6f79452a1fd59402fd9bc6d1e8ab20b950b841d6..3d87db3df39b944a4a0b10447d1a70b85917a4bc 100644 (file)
@@ -1,5 +1,5 @@
-import documentElement from "../../var/documentElement.js";
+import { documentElement } from "../../var/documentElement.js";
 
 // Support: IE 9 - 11+
 // IE requires a prefix.
-export default documentElement.matches || documentElement.msMatchesSelector;
+export var matches = documentElement.matches || documentElement.msMatchesSelector;
index fdf288270b7cc3ab38a99cd7de6a72c6fb1a8948..64fde1d1c3ff194405c3bd92040defaa4b748493 100644 (file)
@@ -1,7 +1,7 @@
-import identifier from "./identifier.js";
-import attributes from "./attributes.js";
+import { identifier } from "./identifier.js";
+import { attributes } from "./attributes.js";
 
-export default ":(" + identifier + ")(?:\\((" +
+export var pseudos = ":(" + identifier + ")(?:\\((" +
 
        // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
        // 1. quoted (capture 3; capture 4 or capture 5)
index f5803f90f4e31ed23751fff9f5bc6dfa0b3d55aa..acb651619fad82a3b9ff6649093704f037b82f48 100644 (file)
@@ -1,3 +1,3 @@
-import whitespace from "../../var/whitespace.js";
+import { whitespace } from "../../var/whitespace.js";
 
-export default new RegExp( "^" + whitespace + "*," + whitespace + "*" );
+export var rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" );
index bab600901c3d00a38ff778b48a5bb25e397f05f7..6a4cd88850c08d88f30ba2200898bb373a9627ac 100644 (file)
@@ -1,3 +1,3 @@
-import whitespace from "../../var/whitespace.js";
+import { whitespace } from "../../var/whitespace.js";
 
-export default new RegExp( whitespace + "|>" );
+export var rdescend = new RegExp( whitespace + "|>" );
index f802dc8c0c166dee1c47b8bb69239392ec1de085..c620dc91427ee299a7b887b1248287576b07dfc9 100644 (file)
@@ -1,4 +1,4 @@
-import whitespace from "../../var/whitespace.js";
+import { whitespace } from "../../var/whitespace.js";
 
-export default new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" +
-       whitespace + "*" );
+export var rleadingCombinator = new RegExp( "^" + whitespace + "*([>+~]|" +
+       whitespace + ")" + whitespace + "*" );
index 9ed943a5f6cbc2daf8041415fe9daa41b0d286f2..bcf869304d1b6fcaa39752edf1317fb76fefcb5f 100644 (file)
@@ -1,3 +1,3 @@
-import pseudos from "./pseudos.js";
+import { pseudos } from "./pseudos.js";
 
-export default new RegExp( pseudos );
+export var rpseudo = new RegExp( pseudos );
index 9aa8158959bae6ae8616f378729477eaab49bbf5..e80fcf91c7e6e1ddc616ede7dce89a5746caf2c5 100644 (file)
@@ -1 +1 @@
-export default /[+~]/;
+export var rsibling = /[+~]/;
index ebe73345011ba730f0c8d80dcf6b157220833aa0..704fe09bce7a63f1e427c9d295869208ddd268b3 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "./core.js";
-import toType from "./core/toType.js";
-import rcheckableType from "./var/rcheckableType.js";
+import { jQuery } from "./core.js";
+import { toType } from "./core/toType.js";
+import { rcheckableType } from "./var/rcheckableType.js";
 
 import "./core/init.js";
 import "./traversing.js"; // filter
@@ -126,4 +126,4 @@ jQuery.fn.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 5ce33f3174f966fa8cbfa69627f4cdf67c389e1f..374c4b794fbfebf529c2b28ebc48cd1c2ae6e0d0 100644 (file)
@@ -1,10 +1,10 @@
-import jQuery from "./core.js";
-import getProto from "./var/getProto.js";
-import indexOf from "./var/indexOf.js";
-import dir from "./traversing/var/dir.js";
-import siblings from "./traversing/var/siblings.js";
-import rneedsContext from "./traversing/var/rneedsContext.js";
-import nodeName from "./core/nodeName.js";
+import { jQuery } from "./core.js";
+import { getProto } from "./var/getProto.js";
+import { indexOf } from "./var/indexOf.js";
+import { dir } from "./traversing/var/dir.js";
+import { siblings } from "./traversing/var/siblings.js";
+import { rneedsContext } from "./traversing/var/rneedsContext.js";
+import { nodeName } from "./core/nodeName.js";
 
 import "./core/init.js";
 import "./traversing/findFilter.js";
@@ -190,4 +190,4 @@ jQuery.each( {
        };
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 42022180c4070c7a2f26864f54375b7d6d5c097d..66fd76645031d78151e1e3731c9be34a15ee72b9 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../core.js";
-import indexOf from "../var/indexOf.js";
-import rneedsContext from "./var/rneedsContext.js";
+import { jQuery } from "../core.js";
+import { indexOf } from "../var/indexOf.js";
+import { rneedsContext } from "./var/rneedsContext.js";
 
 import "../selector.js";
 
index 3729d9b73ce8aad74d2891dc1856ea257c04179c..93dbf8c0882eccd47f9ee6636b175be6bfecf277 100644 (file)
@@ -1,6 +1,6 @@
-import jQuery from "../../core.js";
+import { jQuery } from "../../core.js";
 
-export default function( elem, dir, until ) {
+export function dir( elem, dir, until ) {
        var matched = [],
                truncate = until !== undefined;
 
index 9038e17cd83aa3a3069746a286a7322e76528e3b..667303f840a8cf73225b540c721e6e073f45501d 100644 (file)
@@ -1,5 +1,5 @@
-import jQuery from "../../core.js";
+import { jQuery } from "../../core.js";
 
 import "../../selector.js";
 
-export default jQuery.expr.match.needsContext;
+export var rneedsContext = jQuery.expr.match.needsContext;
index fe51094bd723e2bd328c6ee9d85b362da9ac24f2..3b908d7fdc7d2a2751a13cef7c437002abd11d0d 100644 (file)
@@ -1,4 +1,4 @@
-export default function( n, elem ) {
+export function siblings( n, elem ) {
        var matched = [];
 
        for ( ; n; n = n.nextSibling ) {
index c8fdcd989283e637b7c6291e498185d5bc2ee4b6..89430c4a1a721643647b2df020e50b013671c69d 100644 (file)
@@ -1,3 +1,3 @@
-import fnToString from "./fnToString.js";
+import { fnToString } from "./fnToString.js";
 
-export default fnToString.call( Object );
+export var ObjectFunctionString = fnToString.call( Object );
index d6d1738de67ec12cd1cae1bbef0525681e0f82c7..2b6353667ed3d090390ca4bbe5e4ecc34be25bbd 100644 (file)
@@ -1 +1 @@
-export default [];
+export var arr = [];
index 758dff6de1023f9195c20a9176ab4ffcb340cc4a..7ef6b59da31c2329a9d2507c4e0c140abc1b7e26 100644 (file)
@@ -1,2 +1,2 @@
 // [[Class]] -> type pairs
-export default {};
+export var class2type = {};
index db89b687533b8babd86b8f0b4f9949cf99df2097..8f09bef47c5bb698f909c7f27eac847173a182fd 100644 (file)
@@ -1 +1 @@
-export default window.document;
+export var document = window.document;
index 4bad20e5483d5e4c62effe8515edaafc7f0070f0..d2fa523462bd5f406bcff48ec7a13aed8aa9195d 100644 (file)
@@ -1,3 +1,3 @@
-import document from "./document.js";
+import { document } from "./document.js";
 
-export default document.documentElement;
+export var documentElement = document.documentElement;
index de911aeefa39d850c139de9f9ea90dded57e63ec..269ebec11aa018db26e121764d10d5f6120dc407 100644 (file)
@@ -1,8 +1,8 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
 // Support: IE 11+
 // IE doesn't have Array#flat; provide a fallback.
-export default arr.flat ? function( array ) {
+export var flat = arr.flat ? function( array ) {
        return arr.flat.call( array );
 } : function( array ) {
        return arr.concat.apply( [], array );
index 10042138ee41c38a3587e6a4099a0857d6f92b9d..332dd129655757b1832e427e57f0d77306c25980 100644 (file)
@@ -1,3 +1,3 @@
-import hasOwn from "./hasOwn.js";
+import { hasOwn } from "./hasOwn.js";
 
-export default hasOwn.toString;
+export var fnToString = hasOwn.toString;
index 392cd3973c07bcdeff88685179d860950e92e01a..519db04dcd9848321477aae38ae724d6c6f68d4f 100644 (file)
@@ -1 +1 @@
-export default Object.getPrototypeOf;
+export var getProto = Object.getPrototypeOf;
index 62f2c1852385f08f25647d622453fa8921ec2071..eff6b78056fbb7762597fe9c0f9144347d928216 100644 (file)
@@ -1,3 +1,3 @@
-import class2type from "./class2type.js";
+import { class2type } from "./class2type.js";
 
-export default class2type.hasOwnProperty;
+export var hasOwn = class2type.hasOwnProperty;
index f1342c8f7cacb0ee02e486c943387ee08ddaa303..93cd31b71570554b10ea62ecf4b4b9587f8a8fc4 100644 (file)
@@ -1,3 +1,3 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
-export default arr.indexOf;
+export var indexOf = arr.indexOf;
index a239745ea724ad54f94243122670edd027b1d490..6a6645569a5b85860b7ee1ab783d66931b71b705 100644 (file)
@@ -1,3 +1,3 @@
-import document from "./document.js";
+import { document } from "./document.js";
 
-export default document.documentMode;
+export var isIE = document.documentMode;
index 25f22dbe31ad7120964529996e169bb65515ec75..3018a379ac3ad86adb71c76f75b1848cc36327ee 100644 (file)
@@ -1,3 +1,3 @@
-export default function isWindow( obj ) {
+export function isWindow( obj ) {
        return obj != null && obj === obj.window;
 }
index 5f6bca473b669dce9130a73d6f55084820e13a70..d8426e5777af48188cafa5b8cdc4deff93e39ef1 100644 (file)
@@ -1 +1 @@
-export default ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
+export var pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source;
index b1c9131c512bf1188153be20ae29ac4f1a86836f..4ab9514a6bc0726fc5a5cb19bcc1d74ce4cd90e2 100644 (file)
@@ -1,3 +1,3 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
-export default arr.pop;
+export var pop = arr.pop;
index 2758aa58792eacde10896083222472e93d46459f..51ba05ce7307e0322b3e7476e3f90236a261042b 100644 (file)
@@ -1,3 +1,3 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
-export default arr.push;
+export var push = arr.push;
index 9fc4b55dc2044055e673eac2a31953d17be0ad24..19da1790f7afd923806c729e1fb2e698843c10b1 100644 (file)
@@ -1 +1 @@
-export default ( /^(?:checkbox|radio)$/i );
+export var rcheckableType = /^(?:checkbox|radio)$/i;
index c96eb65cab5a3bc2c99160dfd62ce109cf65b754..823636c2f55c1ebb3b7db42cde2d3048ecd3bb32 100644 (file)
@@ -1,3 +1,3 @@
-import pnum from "../var/pnum.js";
+import { pnum } from "../var/pnum.js";
 
-export default new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
+export var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
index db2a9e360f5217c040775cc8afa542715db0a141..ac8586dbcc43613940841f0925d2159ca28957eb 100644 (file)
@@ -1,4 +1,4 @@
 // Only count HTML whitespace
 // Other whitespace should count in values
 // https://infra.spec.whatwg.org/#ascii-whitespace
-export default ( /[^\x20\t\r\n\f]+/g );
+export var rnothtmlwhite = /[^\x20\t\r\n\f]+/g;
index 89d86d17a3438cc9c399a2bcc23d38b1d8c77d62..aa20c961c39062486dc6216ffa0be32711bd034f 100644 (file)
@@ -1,6 +1,6 @@
-import whitespace from "./whitespace.js";
+import { whitespace } from "./whitespace.js";
 
-export default new RegExp(
+export var rtrim = new RegExp(
        "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
        "g"
 );
index 4d767ac98ab0765588107c658bbda68708bf1eeb..386d342c2d12afa7eb067f6093109f742b2bf70b 100644 (file)
@@ -1,3 +1,3 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
-export default arr.slice;
+export var slice = arr.slice;
index 031be77061f431d7247f199cbcdd5d0571156c49..2752de2a62df913ef2f81d8e659ce9e379bb130b 100644 (file)
@@ -1,3 +1,3 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
-export default arr.sort;
+export var sort = arr.sort;
index 7b3661cd13efb20b7d9a44dd70b6457c1092558f..253866f3a6e5cc64a09731bec4d869f310c5e835 100644 (file)
@@ -1,3 +1,3 @@
-import arr from "./arr.js";
+import { arr } from "./arr.js";
 
-export default arr.splice;
+export var splice = arr.splice;
index cc0a15d15c708f71e677c6a4db16b723bcddd3a0..5d114afbab6a73a0534d11066b9787278a8116b5 100644 (file)
@@ -1,2 +1,2 @@
 // All support tests are defined in their respective modules.
-export default {};
+export var support = {};
index 01682d601062ec02f9a883abd0f85c4960bf922b..f60fc5ec0906e08a89454c167a02f9269e013265 100644 (file)
@@ -1,3 +1,3 @@
-import class2type from "./class2type.js";
+import { class2type } from "./class2type.js";
 
-export default class2type.toString;
+export var toString = class2type.toString;
index dcac814c70121b5546b3f77a2b1cad7adee2c2ee..375e76e2719c59c7e0b9eb42773c768aea6104fd 100644 (file)
@@ -1,2 +1,2 @@
 // https://www.w3.org/TR/css3-selectors/#whitespace
-export default "[\\x20\\t\\r\\n\\f]";
+export var whitespace = "[\\x20\\t\\r\\n\\f]";
index cd7636b8dba11cbbbd3a550e7bbc7f068b3d6814..4a37002a721b3f8f528038597091373323a1ad8f 100644 (file)
@@ -1,4 +1,4 @@
-import jQuery from "./core.js";
+import { jQuery } from "./core.js";
 
 import "./core/init.js";
 import "./manipulation.js"; // clone
@@ -70,4 +70,4 @@ jQuery.fn.extend( {
        }
 } );
 
-export default jQuery;
+export { jQuery, jQuery as $ };
index 4146aec130b1732e3559a0f7754957b19128c9ed..0340fb6e0d1e44652ae474e997799998493f84d4 100644 (file)
@@ -59,7 +59,7 @@
                // with a SyntaxError here.
                dynamicImportSource = "" +
                        "import( `${ parentUrl }src/jquery.js` )\n" +
-                       "       .then( ( { default: jQuery } ) => {\n" +
+                       "       .then( ( { jQuery } ) => {\n" +
                        "               window.jQuery = jQuery;\n" +
                        "               if ( typeof loadTests === \"function\" ) {\n" +
                        "                       // Include tests if specified\n" +