Skip to content

Commit

Permalink
More formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarrough committed Jan 1, 2018
1 parent b66e155 commit c321855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/shuffle-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export function shuffleArray(array) {
i = Math.floor(Math.random() * m--)

// And swap it with the current element.
t = array[m]
t = array[m]
array[m] = array[i]
array[i] = t
}
return array;
return array
}

0 comments on commit c321855

Please sign in to comment.