electron/spec/fixtures/module/print_name.js
2015-12-30 01:41:31 +05:30

7 lines
113 B
JavaScript

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