MCPcopy Create free account
hub / github.com/dataform-co/dataform / passwordQuestion

Function passwordQuestion

cli/console.ts:103–108  ·  view source on GitHub ↗
(questionText: string)

Source from the content-addressed store, hash-verified

101
102
103export function passwordQuestion(questionText: string) {
104 return prompt(questionText, {
105 hideEchoBack: true,
106 mask: ""
107 });
108}
109
110export function ynQuestion(questionText: string, defaultValue: boolean = false): boolean {
111 const response = readlineSync.keyInYN(questionText);

Callers

nothing calls this directly

Calls 1

promptFunction · 0.85

Tested by

no test coverage detected