function-with-missing-properties.js 190 B

1234567891011121314
  1. exports.setup = function () {
  2. const foo = {}
  3. foo.bar = function () {
  4. return delete foo.bar.baz && delete foo.bar
  5. }
  6. foo.bar.baz = function () {
  7. return 3
  8. }
  9. return foo
  10. }