the minify output modules:
Cube(n,[],function(m){.......;return m.exports});
this structure can be replaced into:
Cube(n,[],function(m){.......;});
Cube.js pass module object into module's fn,so there is no need to return module.exports at the end of the module file.
even more, shutcut the Cube into C
C(n,[],function(m){.......;});
the minify output modules:
this structure can be replaced into:
Cube.js pass
moduleobject into module'sfn,so there is no need to returnmodule.exportsat the end of the module file.even more, shutcut the
CubeintoC