arrayMove.ts 228 B

12345
  1. export default function arrayMove(array: Array<any>, from: number, to: number) {
  2. const newArray = array.slice();
  3. newArray.splice(to < 0 ? newArray.length + to : to, 0, newArray.splice(from, 1)[0]);
  4. return newArray;
  5. }