With ES6 proxies it should be possible to have the following: ``` js expect(someVariable).to.exiist; ``` throw which would remove one of the reasons why [assertions on property access are problematic](https://www.npmjs.com/package/dirty-chai#function-form-for-terminating-assertion-properties). This will still need to work in browsers not supporting ES6 proxies (now: all browsers but this will soon change). Refs #56.