fix: fixed issue with pack manager

This commit is contained in:
paul
2025-03-18 18:08:25 +05:30
parent 81ddfc58c5
commit a4365861c9
7 changed files with 177 additions and 58 deletions

5
src/utils/random.js Normal file
View File

@@ -0,0 +1,5 @@
export function randomArrayChoice(arr){
return arr[Math.floor(Math.random() * arr.length)];
}