mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
4 lines
118 B
JavaScript
4 lines
118 B
JavaScript
|
|
export const filterItemsByResourceType = (items, type) => {
|
|
return items.filter((item) => item._type === type);
|
|
} |