Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
function write (writable, chunk) {
return new Promise((resolve) => writable.write(chunk, resolve));
}
write(process.stdout, 'hello\n')
.then(() => write(process.stderr, 'world'))
.then(() => process.exit(0));