ExPrompt.password

You're seeing just the function password, go back to ExPrompt module for more information.
Link to this function

password(prompt, hide \\ true)

View Source

Specs

password(prompt(), hide :: boolean()) :: String.t()

Asks for a password.

This method will hide the password by default as the user types. If that's not the desired behavior, it accepts false, and the password will be shown as it's being typed.

Examples

ExPrompt.password("Password: ")

ExPrompt.password("Password: ", false)