14
common/resources/client/utils/array/move-item-in-new-array.ts
Executable file
14
common/resources/client/utils/array/move-item-in-new-array.ts
Executable file
@@ -0,0 +1,14 @@
|
||||
export function moveItemInNewArray<T>(
|
||||
array: T[],
|
||||
from: number,
|
||||
to: number
|
||||
): T[] {
|
||||
const newArray = array.slice();
|
||||
newArray.splice(
|
||||
to < 0 ? newArray.length + to : to,
|
||||
0,
|
||||
newArray.splice(from, 1)[0]
|
||||
);
|
||||
|
||||
return newArray;
|
||||
}
|
||||
Reference in New Issue
Block a user