ehmicky
ehmicky
Re-opening because this feature still depends on #695.
PR at #699 implementing this. The initial message's example would then written as: ```js const prefixLine = function * (line) { yield `[job ${i + 1} of jobs.length] ${line}` }...
@sindresorhus I believe this issue can be closed. What do you think?
This is a timing issue. Namely, once you write the initial `y`, the first prompt processes it. It needs some time before displaying the second prompt and listening for more...
I am wondering whether the modern way to do this now (as this issue is 7 years old) would be to use async iterables. Both streams (including `process.stdin|stdout|stderr` and `readline.createInterface()`)...
I have been digging into this issue, and it turns out it is actually quite complicated for users to get right. First, the `.filter()`, `.map()` functional methods I was mentioning...
This new feature has now been merged to the `main` branch. If you're curious, please check [its documentation](https://github.com/sindresorhus/execa/blob/main/docs/transform.md). To retake the original's message's example, it would look like this instead:...
Closing this issue as stale.
Hi everyone, I am not completely sure I am answering your question correctly, but the reason this module does not support Node 12 is because Node 12 is [not officially...
Chrome does not have `stream.destroy()`, so cannot be impacted by this bug. `error.stack` is memoized by V8. However, this is intentional and not a bug. This issue is not reporting...