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

16 lines
130 B
JavaScript
Raw Normal View History

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