(value: string)
| 19 | export const isPercent = (value: string) => value.endsWith('%') && isNumber(value.slice(0, -1)) |
| 20 | |
| 21 | export const isTshirtSize = (value: string) => tshirtUnitRegex.test(value) |
| 22 | |
| 23 | export const isAny = () => true |
| 24 |
no outgoing calls
no test coverage detected
searching dependent graphs…