electron/spec-main/fixtures/remote/call.js

8 lines
115 B
JavaScript
Raw Normal View History

2016-03-25 20:03:49 +00:00
exports.call = function (func) {
2020-03-20 20:28:31 +00:00
return func();
};
2016-03-25 20:03:49 +00:00
exports.constructor = function () {
2020-03-20 20:28:31 +00:00
this.test = 'test';
};