(n = 0, o = 0)
| 14 | } |
| 15 | |
| 16 | const shakenPct = (n = 0, o = 0) => { |
| 17 | const pct = Math.max((100 - ((n / o) * 100)).toFixed(2), 0) |
| 18 | return Number.isNaN(pct) ? 0 : pct |
| 19 | } |
| 20 | |
| 21 | const match = (str, check) => str.indexOf(check) !== -1 |
| 22 |
no outgoing calls
no test coverage detected
searching dependent graphs…