-
Notifications
You must be signed in to change notification settings - Fork 476
Expand file tree
/
Copy pathwrapper.js
More file actions
33 lines (27 loc) · 755 Bytes
/
wrapper.js
File metadata and controls
33 lines (27 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*!
* jQuery Migrate - v@VERSION - @DATE
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.com/license/
*/
( function( factory ) {
"use strict";
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [ "jquery" ], function( jQuery ) {
return factory( jQuery, window );
} );
} else if ( typeof module === "object" && module.exports ) {
// Node/CommonJS
// eslint-disable-next-line no-undef
module.exports = factory( require( "jquery" ), window );
} else {
// Browser globals
factory( jQuery, window );
}
} )( function( jQuery, window ) {
"use strict";
// @CODE
// build.js inserts compiled jQuery here
return jQuery;
} );