- From: Tobie Langel <notifications@github.com>
- Date: Mon, 21 Aug 2017 16:25:12 +0000 (UTC)
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 21 August 2017 16:25:34 UTC
The proposed resolution would be the following behavior, right? ```js const it = new URLSearchParams().values(); it[Symbol.toStringTag]; // --> "URLSearchParams Iterator" Object.prototype.toString.apply(it); // --> "[object URLSearchParams Iterator]" Object.getPrototypeOf(it)[Symbol.toStringTag]; // --> "URLSearchParams Iterator" Object.prototype.toString.apply(Object.getPrototypeOf(it)); // --> "[object URLSearchParams Iterator]" ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/heycam/webidl/issues/419#issuecomment-323790991
Received on Monday, 21 August 2017 16:25:34 UTC