agsamantha/node_modules/langsmith/dist/utils/shuffle.js

12 lines
351 B
JavaScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
export function shuffle(array) {
let currentIndex = array.length;
while (currentIndex !== 0) {
const randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
const tmp = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = tmp;
}
return array;
}