Appearance
import { move } from "grantlibs"; 或; const { move } = require("grantlibs");
move<T>( array: T[], from: number, to: number): T[]
T[],移动后的数组。
move([1, 2, 3, 4, 5], 0, 2); // => [2, 3, 1, 4, 5]