If you have code like this:
var t = require("./x");
setTimeout(function()
{
console.log(t === require("./x"));
}, 1000);
The second require appears to be not sandboxed while the first is. Not sure, but they are certainly different and this results false.