Last active
December 20, 2015 01:19
-
-
Save summivox/6048552 to your computer and use it in GitHub Desktop.
browser / node library export snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ((exp) -> | |
| # exp.blah = blah | |
| ) switch | |
| when module?.exports then module.exports | |
| when window? then window |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| do (exports = if exports? then exports else this) -> | |
| exports.blah = "blah" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment