[DRVWEB-4373] Add Suggestion Mode spotlight onboarding modal for docs on drive
[ProtonMail-WebClient.git] / packages / pass / utils / array / remove.ts
blob79193e4aa384cc162421c744958352068ec62225
1 export const arrayRemove = <T>(array: T[], removeAt: number): T[] => array.filter((_, index) => index !== removeAt);