mirror of
https://github.com/electron/electron.git
synced 2026-01-26 07:48:08 -05:00
16 lines
130 B
JavaScript
16 lines
130 B
JavaScript
class Foo {
|
|
static foo () {
|
|
return 3
|
|
}
|
|
|
|
baz () {
|
|
return 123
|
|
}
|
|
}
|
|
|
|
Foo.bar = 'baz'
|
|
|
|
module.exports = {
|
|
Foo: Foo
|
|
}
|