mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
exports.call = function (func) {
|
|
return func();
|
|
};
|
|
|
|
exports.constructor = function () {
|
|
this.test = 'test';
|
|
};
|