File size: 580 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import compact from './compact';
import convertToArrayPayload from './convertToArrayPayload';
import isUndefined from './isUndefined';
function removeAtIndexes<T>(data: T[], indexes: number[]): T[] {
let i = 0;
const temp = [...data];
for (const index of indexes) {
temp.splice(index - i, 1);
i++;
}
return compact(temp).length ? temp : [];
}
export default <T>(data: T[], index?: number | number[]): T[] =>
isUndefined(index)
? []
: removeAtIndexes(
data,
(convertToArrayPayload(index) as number[]).sort((a, b) => a - b),
);
|