(timeout)
| 6267 | },{"is-plain-object":16,"kind-of":18,"shallow-clone":24}],14:[function(require,module,exports){ |
| 6268 | class ConsumableStream { |
| 6269 | async next(timeout) { |
| 6270 | let asyncIterator = this.createConsumer(timeout); |
| 6271 | let result = await asyncIterator.next(); |
| 6272 | asyncIterator.return(); |
| 6273 | return result; |
| 6274 | } |
| 6275 | |
| 6276 | async once(timeout) { |
| 6277 | let result = await this.next(timeout); |
no test coverage detected