TenantAtlas/apps/platform/.pnpm-store/v10/files/c1/a8a4f11a1db31c8b705feb10c90824b9733cda0696b0f29e8a98434e521ddca885c037eae8bca4398448269afc7caf1187d222f8af10dab02e5f048c918850
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

5 lines
205 B
Plaintext

import { reduce } from './reduce';
export function count(predicate) {
return reduce((total, value, i) => (!predicate || predicate(value, i) ? total + 1 : total), 0);
}
//# sourceMappingURL=count.js.map