Skip to content

Instantly share code, notes, and snippets.

@vasergen
Created July 11, 2016 10:35
Show Gist options
  • Save vasergen/572e81fa2ae902e3dc115eaef6b06973 to your computer and use it in GitHub Desktop.
Save vasergen/572e81fa2ae902e3dc115eaef6b06973 to your computer and use it in GitHub Desktop.
(function() {
let chatModule = (function() {
let message = 'hi bro'
function say() {
console.log(message);
}
return {
say: say
}
})();
if(!window.chatModule) {
window.chatModule = chatModule
} else {
console.error('bla bla bla')
}
})(window)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment