2023-07-10 17:14:08 +00:00
|
|
|
/*!
|
|
|
|
* jQuery JavaScript Library v@VERSION
|
|
|
|
* https://jquery.com/
|
|
|
|
*
|
|
|
|
* Copyright OpenJS Foundation and other contributors
|
|
|
|
* Released under the MIT license
|
|
|
|
* https://jquery.org/license
|
|
|
|
*
|
|
|
|
* Date: @DATE
|
|
|
|
*/
|
|
|
|
// For ECMAScript module environments where a proper `window`
|
|
|
|
// is present, execute the factory and get jQuery.
|
|
|
|
function jQueryFactory( window, noGlobal ) {
|
|
|
|
|
2023-09-19 16:58:24 +00:00
|
|
|
if ( typeof window === "undefined" || !window.document ) {
|
|
|
|
throw new Error( "jQuery requires a window with a document" );
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:14:08 +00:00
|
|
|
// @CODE
|
|
|
|
// build.js inserts compiled jQuery here
|
|
|
|
|
|
|
|
return jQuery;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-09-19 16:58:24 +00:00
|
|
|
var jQuery = jQueryFactory( window, true );
|
|
|
|
|
|
|
|
export { jQuery, jQuery as $ };
|
2023-07-10 17:14:08 +00:00
|
|
|
|
2023-09-19 16:58:24 +00:00
|
|
|
export default jQuery;
|