aboutsummaryrefslogtreecommitdiff
path: root/src/utils/common.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-03-12 17:39:04 -0500
committerIvan Chen <ivan@tagg.id>2021-03-12 17:39:04 -0500
commit40a0e9fde2a4a16baebb99f0285fc630ae6cfac1 (patch)
tree34c352779a75ce907062b1c6cdabae73d05c670a /src/utils/common.ts
parent1433c44fd4588b9044df83e199a57223b4979446 (diff)
parent34d94e1dff831aafa984a2f6c9b9b01e2e349154 (diff)
Merge branch 'master' into tma694-edit-badges
# Conflicts: # src/components/search/SearchCategories.tsx
Diffstat (limited to 'src/utils/common.ts')
-rw-r--r--src/utils/common.ts21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/utils/common.ts b/src/utils/common.ts
index 30122e79..c1049c42 100644
--- a/src/utils/common.ts
+++ b/src/utils/common.ts
@@ -94,3 +94,24 @@ export const haveUnreadNotifications = async (
}
return false;
};
+
+// https://stackoverflow.com/a/2450976
+export const shuffle = (array: any[]) => {
+ var currentIndex = array.length,
+ temporaryValue,
+ randomIndex;
+
+ // While there remain elements to shuffle...
+ while (currentIndex !== 0) {
+ // Pick a remaining element...
+ randomIndex = Math.floor(Math.random() * currentIndex);
+ currentIndex -= 1;
+
+ // And swap it with the current element.
+ temporaryValue = array[currentIndex];
+ array[currentIndex] = array[randomIndex];
+ array[randomIndex] = temporaryValue;
+ }
+
+ return array;
+};