Re: [ServiceWorker] Can we change the body attribute of Request/Response to a method? (#606)

DevTools generally does not evaluate getters, in Chrome at least. Try this in your console:

```js
var x = { get y() { console.log('foo'); } };
console.log(x);
```

As you can see "foo" is not logged.

---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/606#issuecomment-71607781

Received on Tuesday, 27 January 2015 08:23:48 UTC