Skip to content

Instantly share code, notes, and snippets.

@ncb000gt
Created March 17, 2011 14:32
Show Gist options
  • Select an option

  • Save ncb000gt/874416 to your computer and use it in GitHub Desktop.

Select an option

Save ncb000gt/874416 to your computer and use it in GitHub Desktop.
function OTest() {
console.log('test');
}
module.exports = OTest;
➜ gists node
> var otest = require('./otest');
> console.log(require('./otest') == otest);
true
> function a() {
... console.log(require('./otest') == otest);
... }
> a()
true
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment