mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-04-15 22:24:14 +08:00
8 lines
111 B
JavaScript
8 lines
111 B
JavaScript
exports.call = function(func) {
|
|
return func();
|
|
}
|
|
|
|
exports.constructor = function() {
|
|
this.test = 'test';
|
|
}
|