Skip to content

Instantly share code, notes, and snippets.

@thephilip
Created May 3, 2017 17:14
Show Gist options
  • Save thephilip/5b646b953d9a8fba962a7ffabe97fb30 to your computer and use it in GitHub Desktop.
Save thephilip/5b646b953d9a8fba962a7ffabe97fb30 to your computer and use it in GitHub Desktop.
// Module Skeleton
const MyModule = (function myModule(export) {
let _privateVar = 'oogieboogie'
export.myMethod = (i) => {
console.log(i);
}
export.myOtherMethod = (j) => {
console.log(j);
}
}(MyModule || {}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment