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

8 lines
115 B
JavaScript
Raw Normal View History

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