3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00

fix: crash when the arr argument for concatArr isn't specified

fix: formatting

Co-authored-by: Almeida <almeidx@pm.me>
This commit is contained in:
rubyowo 2023-01-09 17:02:41 +04:00
parent 801cd2630b
commit 9386696f4b
No known key found for this signature in database

View file

@ -346,6 +346,7 @@ const baseValues = {
return [...args].join("");
},
concatArr(arr, separator = "") {
if (!Array.isArray(arr)) return "";
return arr.join(separator);
},
eq(...args) {