mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
10 lines
99 B
JavaScript
10 lines
99 B
JavaScript
function foo () {}
|
|
foo.bar = 'baz'
|
|
foo.nested = {
|
|
prop: 'yes'
|
|
}
|
|
|
|
module.exports = {
|
|
foo: foo
|
|
}
|