electron/spec/fixtures/module/call.js

8 lines
111 B
JavaScript
Raw Normal View History

exports.call = function(func) {
return func();
}
exports.constructor = function() {
this.test = 'test';
}