electron/spec/fixtures/module/print_name.js

7 lines
113 B
JavaScript

exports.print = function(obj) {
return obj.constructor.name;
}
exports.echo = function(obj) {
return obj;
}