deno.land / x / yargs@v17.6.0-deno / lib / utils / set-blocking.ts

set-blocking.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
interface WriteStreamWithHandle { _handle: { setBlocking: Function; }; isTTY: boolean;}
export default function setBlocking(blocking: boolean) { // Deno and browser have no process object: if (typeof process === 'undefined') return; [process.stdout, process.stderr].forEach(_stream => { const stream = _stream as any as WriteStreamWithHandle; if ( stream._handle && stream.isTTY && typeof stream._handle.setBlocking === 'function' ) { stream._handle.setBlocking(blocking); } });}
yargs

Version Info

Tagged at
a year ago