/** * 数组顺序随机打乱 * @param arr * @returns arr */ const shuffleArray = (arr: any[]) => arr.sort(() => .5 - Math.random()); export { shuffleArray, };