Skip to content

Commit

Permalink
refactor: function returned to arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
“yauheni-kryzhyk-deriv” committed Feb 21, 2023
1 parent 28168ca commit def91ad
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/shared/src/utils/array/array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ export const shuffleArray = <T>(array: T[]): T[] => {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}

return array;
};

0 comments on commit def91ad

Please sign in to comment.