From 068a94d61b256f4788c5fb25123befcff9bef70e Mon Sep 17 00:00:00 2001 From: Niall Date: Wed, 21 Aug 2024 22:20:57 +0000 Subject: [PATCH] Patch for testing error > Strings must use doublequote quotes --- src/core/operations/GeneratePassword.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/GeneratePassword.mjs b/src/core/operations/GeneratePassword.mjs index 6e9900d7..0ad034b5 100644 --- a/src/core/operations/GeneratePassword.mjs +++ b/src/core/operations/GeneratePassword.mjs @@ -65,7 +65,7 @@ class GeneratePassword extends Operation { resultArray[i] = alphabet.charAt(Math.floor(Math.random() * alphabet.length)); } - return resultArray.join(''); + return resultArray.join(""); } }