electron/spec-main/fixtures/module/call.js
2020-03-20 13:28:31 -07:00

7 lines
115 B
JavaScript

exports.call = function (func) {
return func();
};
exports.constructor = function () {
this.test = 'test';
};