electron/spec-main/fixtures/remote/remote-static.js

15 lines
134 B
JavaScript

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