electron/spec/fixtures/module/hello.js

7 lines
70 B
JavaScript
Raw Normal View History

2017-05-15 12:17:07 +00:00
class Hello {
say () {
return 'hi'
}
}
module.exports = Hello