Skip to content

Commit 9d7cafc

Browse files
upgrade dev deps
1 parent 083053d commit 9d7cafc

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

js/dist/array.js

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
(function(exports, undefined){
1+
( function ( ) {
22

3-
'use strict';
3+
'use strict' ;
4+
5+
var definition = function ( exports , undefined ) {
46

57

68
/* js/src/alloc.js */
@@ -1175,4 +1177,16 @@ var tee = function ( iterable, n, out ) {
11751177

11761178
exports.tee = tee;
11771179

1178-
})(typeof exports === 'undefined' ? this['array'] = {} : exports);
1180+
return exports ;
1181+
} ;
1182+
if ( typeof exports === "object" ) {
1183+
definition( exports ) ;
1184+
}
1185+
else if ( typeof define === "function" && define.amd ) {
1186+
define( "aureooms-js-array" , [ ] , function ( ) { return definition( { } ) ; } ) ;
1187+
}
1188+
else if ( typeof window === "object" && typeof window.document === "object" ) {
1189+
definition( window["array"] = { } ) ;
1190+
}
1191+
else console.error( "unable to detect type of module to define for aureooms-js-array") ;
1192+
} )( ) ;

0 commit comments

Comments
 (0)