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

inclusion-numerique / coop-mediation-numerique / d4144e8b-1bbe-44c2-90e9-6d614bcf9fdc

09 Apr 2026 02:35PM UTC coverage: 10.603% (+3.1%) from 7.465%
d4144e8b-1bbe-44c2-90e9-6d614bcf9fdc

push

circleci

KGALLET
chore: remove quick access menu mobile

698 of 10550 branches covered (6.62%)

Branch coverage included in aggregate %.

2166 of 16460 relevant lines covered (13.16%)

1.99 hits per line

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

0.0
/apps/web/src/utils/removeUndefinedValues.ts
1
type NoUndefinedField<T> = {
2
  [P in keyof T]-?: T[P] extends Record<string, unknown>
3
    ? NoUndefinedField<T[P]>
4
    : Exclude<T[P], undefined>
5
}
6

7
export const removeUndefinedValues = <T>(data: T): NoUndefinedField<T> => {
×
8
  if (Array.isArray(data)) {
×
9
    return data.map((item) =>
×
10
      removeUndefinedValues(item),
×
11
    ) as unknown as NoUndefinedField<T>
12
  }
13
  if (data !== null && typeof data === 'object') {
×
14
    return Object.fromEntries(
×
15
      Object.entries(data).reduce(
16
        (accumulator, [key, value]) => {
17
          if (value !== undefined) {
×
18
            accumulator.push([key, removeUndefinedValues(value)])
×
19
          }
20
          return accumulator
×
21
        },
22
        [] as [string, unknown][],
23
      ),
24
    ) as NoUndefinedField<T>
25
  }
26
  return data as NoUndefinedField<T>
×
27
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc