- From: Domenic Denicola <notifications@github.com>
- Date: Mon, 31 Oct 2016 14:21:13 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Monday, 31 October 2016 21:21:44 UTC
domenic commented on this pull request. > @@ -62,6 +62,10 @@ exports.IsFiniteNonNegativeNumber = v => { }; exports.InvokeOrNoop = (O, P, args) => { + assert(exports.typeIsObject(O) === true); It's actually a bit weirder. For example this code will work: ```js Number.prototype.start = controller => { ... }; new ReadableStream(5); ``` This is purely for consistency with existing platform APIs/JavaScript destructuring. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/584
Received on Monday, 31 October 2016 21:21:44 UTC