Skip to content

Instantly share code, notes, and snippets.

@jrozner
Created May 14, 2013 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrozner/5579856 to your computer and use it in GitHub Desktop.
Save jrozner/5579856 to your computer and use it in GitHub Desktop.
var NativeModule;
(function(){
process.moduleLoadList.push = function() {
NativeModule = arguments.callee.caller('native_module');
delete process.moduleLoadList.push;
return Array.prototype.push.apply(process.moduleLoadList, arguments);
}
require('vm');
})();
NativeModule.require = function() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment