Initial commit — jibo-cli v3.0.7 with bundled node_modules
This commit is contained in:
34
node_modules/prompt/examples/password.js
generated
vendored
Normal file
34
node_modules/prompt/examples/password.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* password.js: Simple example of using prompt.
|
||||
*
|
||||
* (C) 2010, Nodejitsu Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
var prompt = require('../lib/prompt');
|
||||
|
||||
//
|
||||
// Start the prompt
|
||||
//
|
||||
prompt.start();
|
||||
|
||||
//
|
||||
// Get two properties from the user: username and password
|
||||
//
|
||||
prompt.get([{
|
||||
name: 'username',
|
||||
required: true
|
||||
}, {
|
||||
name: 'password',
|
||||
hidden: true,
|
||||
conform: function (value) {
|
||||
return true;
|
||||
}
|
||||
}], function (err, result) {
|
||||
//
|
||||
// Log the results.
|
||||
//
|
||||
console.log('Command-line input received:');
|
||||
console.log(' username: ' + result.username);
|
||||
console.log(' password: ' + result.password);
|
||||
});
|
||||
Reference in New Issue
Block a user