mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:01:20 +08:00
16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
import readline from 'readline';
|
|
|
|
export const ask = (query: string) => {
|
|
const rl = readline.createInterface({
|
|
input: process.stdin,
|
|
output: process.stdout,
|
|
});
|
|
|
|
return new Promise<string>((resolve) =>
|
|
rl.question(`${query}\n`, (ans) => {
|
|
rl.close();
|
|
resolve(ans);
|
|
})
|
|
);
|
|
};
|