Would this also work with destructuring? ``` js const { foo } = null // current: TypeError: Cannot match against 'undefined' or 'null'. // with this?: `foo === undefined` ```