Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created March 17, 2014 13:43
Show Gist options
  • Save ajcrites/9599379 to your computer and use it in GitHub Desktop.
Save ajcrites/9599379 to your computer and use it in GitHub Desktop.
var x = require("./x");
exports.x = x;
var x = require("./x"),
y = require("./one").x;
console.log(x == y);
var x = function () {};
module.exports = new x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment