We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
module
fn
module.exports
even more, shutcut the Cube into C
Cube
C
C(n,[],function(m){.......;});
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the minify output modules:
this structure can be replaced into:
Cube.js pass
module
object into module'sfn
,so there is no need to returnmodule.exports
at the end of the module file.even more, shutcut the
Cube
intoC
The text was updated successfully, but these errors were encountered: