2 * jQuery JavaScript Library v@VERSION
5 * Copyright OpenJS Foundation and other contributors
6 * Released under the MIT license
7 * https://jquery.org/license
11 // For ECMAScript module environments where a proper `window`
12 // is present, execute the factory and get jQuery.
13 function jQueryFactory( window, noGlobal ) {
15 if ( typeof window === "undefined" || !window.document ) {
16 throw new Error( "jQuery requires a window with a document" );
20 // build.js inserts compiled jQuery here
26 var jQuery = jQueryFactory( window, true );
28 export { jQuery, jQuery as $ };
30 export default jQuery;