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

16 lines
134 B
JavaScript
Raw Normal View History

class Foo {
2016-08-16 17:54:16 +00:00
static foo () {
2020-03-20 20:28:31 +00:00
return 3;
}
2016-08-16 17:54:16 +00:00
baz () {
2020-03-20 20:28:31 +00:00
return 123;
}
}
2020-03-20 20:28:31 +00:00
Foo.bar = 'baz';
module.exports = {
Foo: Foo
2020-03-20 20:28:31 +00:00
};