Skip to content

Commit fb2f4aa

Browse files
up deps
1 parent efa8724 commit fb2f4aa

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

js/dist/random.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/000-kernel */
@@ -100,4 +102,16 @@ var shuffle = _shuffle( sample ) ;
100102

101103
exports.shuffle = shuffle ;
102104

103-
})(typeof exports === 'undefined' ? this['random'] = {} : exports);
105+
return exports ;
106+
} ;
107+
if ( typeof exports === "object" ) {
108+
definition( exports ) ;
109+
}
110+
else if ( typeof define === "function" && define.amd ) {
111+
define( "aureooms-js-random" , [ ] , function ( ) { return definition( { } ) ; } ) ;
112+
}
113+
else if ( typeof window === "object" && typeof window.document === "object" ) {
114+
definition( window["random"] = { } ) ;
115+
}
116+
else console.error( "unable to detect type of module to define for aureooms-js-random") ;
117+
} )( ) ;

js/dist/random.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/random.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
],
2525
"version": "1.0.1",
2626
"devDependencies": {
27-
"aureooms-node-package": "^4.0.1",
28-
"aureooms-js-type": "^1.0.1",
29-
"aureooms-js-operator": "^1.0.1",
30-
"aureooms-js-array": "^2.0.2",
31-
"aureooms-js-mem": "^1.0.1"
27+
"aureooms-node-package": "^4.2.5",
28+
"aureooms-js-type": "^1.0.2",
29+
"aureooms-js-operator": "^1.0.2",
30+
"aureooms-js-array": "^2.2.1",
31+
"aureooms-js-mem": "^1.0.2"
3232
},
3333
"author": "aureooms",
3434
"dependencies": {},

0 commit comments

Comments
 (0)