Event: Fix handling of multiple async focus events
[jquery.git] / src / wrapper.js
blob0af1f4964435caf3a38649b7660fbf4df1aa248d
1 /* eslint-disable no-unused-vars*/
2 /*!
3  * jQuery JavaScript Library v@VERSION
4  * https://jquery.com/
5  *
6  * Includes Sizzle.js
7  * https://sizzlejs.com/
8  *
9  * Copyright JS Foundation and other contributors
10  * Released under the MIT license
11  * https://jquery.org/license
12  *
13  * Date: @DATE
14  */
15 ( function( global, factory ) {
17         "use strict";
19         if ( typeof module === "object" && typeof module.exports === "object" ) {
21                 // For CommonJS and CommonJS-like environments where a proper `window`
22                 // is present, execute the factory and get jQuery.
23                 // For environments that do not have a `window` with a `document`
24                 // (such as Node.js), expose a factory as module.exports.
25                 // This accentuates the need for the creation of a real `window`.
26                 // e.g. var jQuery = require("jquery")(window);
27                 // See ticket #14549 for more info.
28                 module.exports = global.document ?
29                         factory( global, true ) :
30                         function( w ) {
31                                 if ( !w.document ) {
32                                         throw new Error( "jQuery requires a window with a document" );
33                                 }
34                                 return factory( w );
35                         };
36         } else {
37                 factory( global );
38         }
40 // Pass this if window is not defined yet
41 } )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
43 // Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
44 // throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
45 // arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
46 // enough that all such attempts are guarded in a try block.
47 "use strict";
49 // @CODE
50 // build.js inserts compiled jQuery here
52 return jQuery;
53 } );