- From: isonmad <notifications@github.com>
- Date: Mon, 31 Oct 2016 14:32:20 -0700
- To: whatwg/streams <streams@noreply.github.com>
Received on Monday, 31 October 2016 21:33:00 UTC
isonmad commented on this pull request. > @@ -62,6 +62,10 @@ exports.IsFiniteNonNegativeNumber = v => { }; exports.InvokeOrNoop = (O, P, args) => { + assert(exports.typeIsObject(O) === true); + assert(typeof P === 'string'); + assert(Array.isArray(args)); Wait, right, never mind about inconsistency. Cuz you mean all of them indirectly call InvokeOrNoop, right? Since PromiseInvokeOrNoop calls that now. -- 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:33:00 UTC