Files
bigcapital/packages/server/src/utils/items-start-with.ts
2025-04-07 11:51:24 +02:00

4 lines
129 B
TypeScript

export const itemsStartWith = (items: string[], char: string) => {
return items.filter((item) => item.indexOf(char) === 0);
};