2016-09-14 18:16:44 +00:00
|
|
|
exports.setup = function () {
|
2020-03-20 20:28:31 +00:00
|
|
|
const foo = {};
|
2016-09-14 17:43:55 +00:00
|
|
|
|
2016-09-14 18:16:44 +00:00
|
|
|
foo.bar = function () {
|
2020-03-20 20:28:31 +00:00
|
|
|
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 () {
|
2020-03-20 20:28:31 +00:00
|
|
|
return 3;
|
|
|
|
};
|
2016-09-14 17:43:55 +00:00
|
|
|
|
2020-03-20 20:28:31 +00:00
|
|
|
return foo;
|
|
|
|
};
|