electron/spec-main/fixtures/module/remote-static.js
2019-12-09 10:27:30 -08:00

15 lines
130 B
JavaScript

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