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