@oclif/core
Version:
base library for oclif CLIs
27 lines (26 loc) • 769 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.flush = flush;
const error_1 = require("./errors/error");
function timeout(p, ms) {
function wait(ms, unref = false) {
return new Promise((resolve) => {
const t = setTimeout(() => resolve(null), ms);
if (unref)
t.unref();
});
}
return Promise.race([p, wait(ms, true).then(() => (0, error_1.error)('timed out'))]);
}
async function _flush() {
const p = new Promise((resolve) => {
process.stdout.once('drain', () => resolve(null));
});
const flushed = process.stdout.write('');
if (flushed)
return;
return p;
}
async function flush(ms = 10_000) {
await timeout(_flush(), ms);
}