1 2 3 4 5 6 7 8 9 10 11(function(module) { var functionCall = function(env, currentFileInfo) { this.env = env; this.currentFileInfo = currentFileInfo; }; functionCall.prototype = require('./functions.js'); module.exports = functionCall; })(module);
1 2 3 4 5 6 7 8 9 10 11
(function(module) { var functionCall = function(env, currentFileInfo) { this.env = env; this.currentFileInfo = currentFileInfo; }; functionCall.prototype = require('./functions.js'); module.exports = functionCall; })(module);