- From: Andrea Giammarchi <notifications@github.com>
- Date: Tue, 31 Mar 2015 10:23:03 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
Received on Tuesday, 31 March 2015 17:23:25 UTC
@mariusGundersen I've got this in console:
```js
var p = Promise.resolve(42);
undefined
p
Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: 42}
```
So that even bringing in my latest [updated playground](https://gist.github.com/WebReflection/0ca8fac8013f76fb4d06) it works as expected.
```js
var p = Promise.resolve(42).cancel();
undefined
p
Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: 42}
```
---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/27#issuecomment-88177628
Received on Tuesday, 31 March 2015 17:23:25 UTC