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