๐Ÿ“ฆ EdwonLim / node-less

๐Ÿ“„ functionCall.js ยท 11 lines
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);