(type: BumpType)
| 10 | }; |
| 11 | |
| 12 | export function bumpLevel(type: BumpType): number { |
| 13 | return BUMP_LEVELS[type]; |
| 14 | } |
| 15 | |
| 16 | export function maxBump(a: BumpType | undefined, b: BumpType): BumpType { |
| 17 | if (!a) return b; |
no outgoing calls
no test coverage detected
searching dependent graphs…