export function removeStringFromArray( needle: string, array: string[] ): string[] { return array.filter((e) => e !== needle); }