7 lines
111 B
JavaScript
7 lines
111 B
JavaScript
exports.call = function(func) {
|
|
return func();
|
|
}
|
|
|
|
exports.constructor = function() {
|
|
this.test = 'test';
|
|
}
|