-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
87 lines (68 loc) · 1.82 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const decoder = new TextDecoder();
export interface GetStdinOptions {
/**
* If `true`, stop reading the stdin once a newline char is reached
* @default true
*/
exitOnEnter?: boolean;
}
/**
* Returns an Uint8Array from standard input
*/
export async function getStdinBuffer(
options: GetStdinOptions = {}
): Promise<Uint8Array> {
const bytes: number[] = [];
while (true) {
// Read bytes one by one
const buffer = new Uint8Array(1);
const readStatus = await Deno.stdin.read(buffer);
// Found EOL
if (readStatus === null || readStatus === 0) {
break;
}
const byte = buffer[0];
// On Enter, exit if we are supposed to
if (byte === 10 && options.exitOnEnter !== false) {
break;
}
bytes.push(byte);
}
return Uint8Array.from(bytes);
}
/**
* Returns a string from standard input
*/
export async function getStdin(options: GetStdinOptions = {}): Promise<string> {
const buffer = await getStdinBuffer(options);
return decoder.decode(buffer);
}
/**
* Returns an Uint8Array from standard input in sync mode
*/
export function getStdinBufferSync(options: GetStdinOptions = {}): Uint8Array {
const bytes: number[] = [];
while (true) {
// Read bytes one by one
const buffer = new Uint8Array(1);
const readStatus = Deno.stdin.readSync(buffer);
// Found EOL
if (readStatus === null || readStatus === 0) {
break;
}
const byte = buffer[0];
// On Enter, exit if we are supposed to
if (byte === 10 && options.exitOnEnter !== false) {
break;
}
bytes.push(byte);
}
return Uint8Array.from(bytes);
}
/**
* Returns a string from standard input in sync mode
*/
export function getStdinSync(options: GetStdinOptions = {}): string {
const buffer = getStdinBufferSync(options);
return decoder.decode(buffer);
}