aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/array-helpers.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-02 05:13:38 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-02 06:19:03 +0530
commitd16cc1f2c59818e53f28b4d6b4d27250331f15d7 (patch)
tree57bf4d149ec2be88dd0d351142998ce96db0d659 /src/helpers/array-helpers.ts
parentchore: correctly export/import ui elements (diff)
downloadferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.tar.gz
ferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.tar.zst
ferdium-app-d16cc1f2c59818e53f28b4d6b4d27250331f15d7.zip
Use default exports instead of named exports
Diffstat (limited to 'src/helpers/array-helpers.ts')
-rw-r--r--src/helpers/array-helpers.ts11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/helpers/array-helpers.ts b/src/helpers/array-helpers.ts
index 45ff932ba..5d28af433 100644
--- a/src/helpers/array-helpers.ts
+++ b/src/helpers/array-helpers.ts
@@ -1,5 +1,6 @@
1export const shuffleArray = (arr: any[]): any[] => 1export default function shuffleArray(arr: any[]): any[] {
2 arr 2 return arr
3 .map(a => [Math.random(), a]) 3 .map(a => [ Math.random(), a ])
4 .sort((a, b) => a[0] - b[0]) 4 .sort((a, b) => a[ 0 ] - b[ 0 ])
5 .map(a => a[1]); 5 .map(a => a[ 1 ])
6};