2016-09-14 18:16:44 +00:00
|
|
|
exports.setup = function () {
|
|
|
|
const foo = {}
|
2016-09-14 17:43:55 +00:00
|
|
|
|
2016-09-14 18:16:44 +00:00
|
|
|
foo.bar = function () {
|
|
|
|
return delete foo.bar.baz && delete foo.bar
|
|
|
|
}
|
2016-09-14 17:43:55 +00:00
|
|
|
|
2016-09-14 18:16:44 +00:00
|
|
|
foo.bar.baz = function () {
|
|
|
|
return 3
|
|
|
|
}
|
2016-09-14 17:43:55 +00:00
|
|
|
|
2016-09-14 18:16:44 +00:00
|
|
|
return foo
|
|
|
|
}
|