Skip to content

Instantly share code, notes, and snippets.

@itayw
Created November 28, 2013 05:58
Show Gist options
  • Save itayw/7687851 to your computer and use it in GitHub Desktop.
Save itayw/7687851 to your computer and use it in GitHub Desktop.
function wrapper
https://github.com/joyent/node/blob/master/src/node.js#L1007-L1014
...
NativeModule.wrap = function(script) {
return NativeModule.wrapper[0] + script + NativeModule.wrapper[1];
};
NativeModule.wrapper = [
'(function (exports, require, module, __filename, __dirname) { ',
'\n});'
];
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment