mirror of
https://github.com/electron/electron.git
synced 2026-02-10 07:05:35 -05:00
Verified migration doc (nothing to be done) http://eslint.org/docs/user-guide/migrating-to-2.0.0 And made sure the eslint tasks passed
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
exports.print = function(obj) {
|
|
return obj.constructor.name;
|
|
};
|
|
|
|
exports.echo = function(obj) {
|
|
return obj;
|
|
};
|