• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

clippingkk / web / #1212

13 Apr 2026 04:53PM UTC coverage: 0.529% (+0.007%) from 0.522%
#1212

push

web-flow
Merge pull request #176 from clippingkk/refactor/consolidate-shared-helpers

refactor: consolidate shared helpers, prune deps, server-first RSC

30 of 450 branches covered (6.67%)

Branch coverage included in aggregate %.

0 of 643 new or added lines in 81 files covered. (0.0%)

147 of 33019 relevant lines covered (0.45%)

8.8 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/utils/array.ts
NEW
1
export function uniqueById<T extends { id: number | string }>(arr: T[]): T[] {
×
NEW
2
  const seen = new Set<T['id']>()
×
NEW
3
  return arr.filter((item) => {
×
NEW
4
    if (seen.has(item.id)) {
×
NEW
5
      return false
×
NEW
6
    }
×
NEW
7
    seen.add(item.id)
×
NEW
8
    return true
×
NEW
9
  })
×
NEW
10
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc