Press n or j to go to the next uncovered block, b, p or k for the previous block.
export async function stringFromStdErrOut(x: { stdout: string stderr: string }) { return x?.stderr ? Promise.reject(x.stderr) : x.stdout }