- From: Adam Rice <notifications@github.com>
- Date: Fri, 01 Dec 2017 14:29:06 +0000 (UTC)
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 1 December 2017 14:29:39 UTC
ricea commented on this pull request.
> try {
- return Promise.resolve(exports.InvokeOrNoop(O, P, args));
- } catch (returnValueE) {
- return Promise.reject(returnValueE);
+ return Promise.resolve(Call(F, V, args));
+ } catch (value) {
+ return Promise.reject(value);
+ }
+};
+
+exports.GetMethod = (V, methodName) => {
It turns out TransformStream still needs it to look up the "transform" method.
--
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/860#discussion_r154357606
Received on Friday, 1 December 2017 14:29:39 UTC