Whether adding rows pushed the count UP across `threshold` (pre below, post at/above).
(prePct: number, postPct: number, threshold: number)
| 19 | |
| 20 | /** Whether adding rows pushed the count UP across `threshold` (pre below, post at/above). */ |
| 21 | function crossedUp(prePct: number, postPct: number, threshold: number): boolean { |
| 22 | return prePct < threshold && postPct >= threshold |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Best-effort table row-limit email after an accepted insert. Resolves the |
no outgoing calls
no test coverage detected