Use um IFFE (expressão de função imediatamente chamada) que é chamado imediatamente e emula um escopo de bloco (como let in ES6) para você.
yourmodule.js
(function(global, undefined) {
// insert your code here
// global is window in the browser and global in node.js
}(this));
estilo de backbone:
(function() {
// insert your code here
}).call(this);