2016-09-14 11:16:44 -07:00
|
|
|
exports.setup = function () {
|
2020-03-20 13:28:31 -07:00
|
|
|
const foo = {};
|
2016-09-14 10:43:55 -07:00
|
|
|
|
2016-09-14 11:16:44 -07:00
|
|
|
foo.bar = function () {
|
2020-03-20 13:28:31 -07:00
|
|
|
return delete foo.bar.baz && delete foo.bar;
|
|
|
|
};
|
2016-09-14 10:43:55 -07:00
|
|
|
|
2016-09-14 11:16:44 -07:00
|
|
|
foo.bar.baz = function () {
|
2020-03-20 13:28:31 -07:00
|
|
|
return 3;
|
|
|
|
};
|
2016-09-14 10:43:55 -07:00
|
|
|
|
2020-03-20 13:28:31 -07:00
|
|
|
return foo;
|
|
|
|
};
|