File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11( function ( root , factory ) {
22 if ( typeof define === 'function' && define . amd ) {
3- define ( [ "./client" ] , function ( CoCreateShipengine ) {
4- return factory ( CoCreateShipengine )
3+ define ( [ "./client" ] , function ( Module ) {
4+ return factory ( Module )
55 } ) ;
66 } else if ( typeof module === 'object' && module . exports ) {
7- const CoCreateShipengine = require ( "./server.js" )
8- module . exports = factory ( CoCreateShipengine ) ;
7+ const Module = require ( "./server.js" )
8+ module . exports = factory ( Module ) ;
99 } else {
1010 root . returnExports = factory ( root [ "./client.js" ] ) ;
1111 }
12- } ( typeof self !== 'undefined' ? self : this , function ( CoCreateShipengine ) {
13- return CoCreateShipengine ;
12+ } ( typeof self !== 'undefined' ? self : this , function ( Module ) {
13+ return Module ;
1414} ) ) ;
You can’t perform that action at this time.
0 commit comments