We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f88a911 commit abc09e9Copy full SHA for abc09e9
index.js
@@ -38,18 +38,18 @@ async function Initiate_A_Request(username, password){
38
}
39
40
//Main
41
-if(Self_Args.length == 0){
+if(!Self_Args.length){
42
console.log(`node index.js <input> <output>
43
-Example: node index.js just_test.txt ./output_test.txt`)
+Example: node index.js accounts.txt output.txt`)
44
process.exit()
45
46
47
-if(Self_Args[0] == ""){
+if(!Self_Args[0]){
48
console.log("Invalid input.")
49
50
51
52
-if(Self_Args[1] == ""){
+if(!Self_Args[1]){
53
console.log("Invalid output.")
54
55
0 commit comments