electron/spec/fixtures/module/function-with-missing-properties.js

12 lines
152 B
JavaScript
Raw Normal View History

const foo = {}
foo.bar = function () {
return delete foo.bar.baz && delete foo.bar
}
foo.bar.baz = function () {
return 3
}
module.exports = foo