(x)
| 490 | } |
| 491 | |
| 492 | function findingCtx(x) { |
| 493 | return { title: x.title, detail: x.detail, files: x.files, severity: x.severity }; |
| 494 | } |
| 495 | function sevCounts(f) { |
| 496 | const c = { P0: 0, P1: 0, P2: 0, P3: 0 }; |
| 497 | (f || []).forEach((x) => { if (c[x.severity] != null) c[x.severity]++; }); |
no outgoing calls
no test coverage detected