Skip to content

Instantly share code, notes, and snippets.

@ralt
Created June 3, 2013 08:41
Show Gist options
  • Save ralt/5696907 to your computer and use it in GitHub Desktop.
Save ralt/5696907 to your computer and use it in GitHub Desktop.
// module.js
module.exports = function() {
var not = 'shared',
between = 'objects';
return {
an: ['array'],
some: method() {}
};
};
// app.js
var mod = require('./module');
var obj1 = mod(),
obj2 = mod();
obj1.an === obj2.an; // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment