electron/spec-main/fixtures/module/remote-static.js
2020-03-20 13:28:31 -07:00

15 lines
134 B
JavaScript

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