Skip to content

Instantly share code, notes, and snippets.

@oroce
Created September 7, 2013 11:40
Show Gist options
  • Save oroce/6474892 to your computer and use it in GitHub Desktop.
Save oroce/6474892 to your computer and use it in GitHub Desktop.
tree in node-sandbox-module
exports.isChild = true;
exports.child = require( "wont-load-child" );
var sm = require( "sandboxed-module" );
var parent = sm.require( "./parent", {
requires: {
"wont-load-child": require( "./child" )
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment