electron/spec/fixtures/module/remote-static.js
2016-08-22 17:07:17 -07:00

15 lines
130 B
JavaScript

class Foo {
static foo () {
return 3
}
baz () {
return 123
}
}
Foo.bar = 'baz'
module.exports = {
Foo: Foo
}