UNPKG

edge-sync-client

Version:

Library for accessing the Edge data-sync system

8 lines (7 loc) 213 B
export function shuffle<T>(array: T[]): T[] { for (let i = array.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)) ;[array[i], array[j]] = [array[j], array[i]] } return array }