mirror of
https://github.com/electron/electron.git
synced 2026-01-26 15:58:07 -05:00
14 lines
190 B
JavaScript
14 lines
190 B
JavaScript
exports.setup = function () {
|
|
const foo = {}
|
|
|
|
foo.bar = function () {
|
|
return delete foo.bar.baz && delete foo.bar
|
|
}
|
|
|
|
foo.bar.baz = function () {
|
|
return 3
|
|
}
|
|
|
|
return foo
|
|
}
|