Add failing spec for missing remote properties

This commit is contained in:
Kevin Sawicki 2016-09-14 10:43:55 -07:00
parent 4627311c34
commit bc13536208
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
const foo = {}
foo.bar = function () {
return delete foo.bar.baz && delete foo.bar
}
foo.bar.baz = function () {
return 3
}
module.exports = foo