You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
354 B
16 lines
354 B
import { createInterface } from 'readline';
|
|
|
|
ask('Enter your username');
|
|
|
|
function ask(question: string): Promise<string> {
|
|
const rlp = createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout,
|
|
});
|
|
return new Promise(resolve => {
|
|
rlp.question(`${question}: `, answer => {
|
|
rlp.close();
|
|
resolve(answer);
|
|
});
|
|
});
|
|
}
|
|
|