Skip to content

Instantly share code, notes, and snippets.

@guilhermehn
Last active April 8, 2016 02:01
Show Gist options
  • Save guilhermehn/4ea73bc0d7966fc913b014c066cfc2b5 to your computer and use it in GitHub Desktop.
Save guilhermehn/4ea73bc0d7966fc913b014c066cfc2b5 to your computer and use it in GitHub Desktop.
(function($) {
var MyLib = {
doSomething() {
// ...
}
}
// amd/umd mumbo jumbo
// simplified for the sake of brevity
if (typeof window !== 'undefined') {
window.MyLib = Mylib
}
else {
module.exports = MyLib
}
}).call(this, jQuery)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment