electron/spec/fixtures/module/hello-child.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
85 B
JavaScript
Raw Normal View History

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