mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
feat(nestjs): migrate to NestJS
This commit is contained in:
3
packages/server/src/utils/items-start-with.ts
Normal file
3
packages/server/src/utils/items-start-with.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const itemsStartWith = (items: string[], char: string) => {
|
||||
return items.filter((item) => item.indexOf(char) === 0);
|
||||
};
|
||||
Reference in New Issue
Block a user