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-30 01:41:31 +05:30
exports.echo = function(obj) {
return obj;
}