electron/spec/fixtures/module/print_name.js

8 lines
113 B
JavaScript
Raw Normal View History

exports.print = function(obj) {
return obj.constructor.name;
}
2015-12-29 20:11:31 +00:00
exports.echo = function(obj) {
return obj;
}