MCPcopy Create free account
hub / github.com/NativeScript/android / getCredentials

Function getCredentials

build-artifacts/scripts/release-notes.js:33–54  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

31getCredentials();
32
33function getCredentials() {
34
35 var rl = readline.createInterface({
36 input: process.stdin,
37 output: process.stdout
38 });
39
40 rl.on('SIGINT', function() {
41 // Ctrl-C
42 console.log("Canceled.");
43 process.exit(1);
44 });
45
46 rl.question("Username: ", function(usr) {
47 rl.close();
48 username = usr;
49 getPassword(function(pass) {
50 password = pass;
51 listMilestones();
52 });
53 })
54};
55
56function listMilestones() {
57

Callers 1

release-notes.jsFile · 0.85

Calls 4

getPasswordFunction · 0.85
listMilestonesFunction · 0.85
logMethod · 0.65
closeMethod · 0.65

Tested by

no test coverage detected