Skip to content

Instantly share code, notes, and snippets.

@TehShrike
Created February 9, 2019 21:59
Show Gist options
  • Save TehShrike/15d93f8246fd647c47d18f3b149a4e2f to your computer and use it in GitHub Desktop.
Save TehShrike/15d93f8246fd647c47d18f3b149a4e2f to your computer and use it in GitHub Desktop.
Wrap CommonJS into a UMD-like thingy
const yourModule = (() => {
const module = { exports: {} }
/* your module here */
module.exports = {
test: true,
}
/* end your module */
return module.exports
})()
console.log(yourModule)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment