D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
utils
/
Filename :
arrayMove.ts
back
Copy
export const arrayMove = <T>(array: T[], fromIndex: number, toIndex: number): T[] => { array.splice(toIndex, 0, array.splice(fromIndex, 1)[0]); return array; };