(factor: string)
| 74 | | TimestampFactor; |
| 75 | |
| 76 | export const isNumberFactor = (factor: string): factor is NumberFactor => { |
| 77 | return NumberFactorList.includes(factor as NumberFactor); |
| 78 | }; |
| 79 | |
| 80 | export const isStringFactor = (factor: string): factor is StringFactor => { |
| 81 | return StringFactorList.includes(factor as StringFactor); |
no outgoing calls
no test coverage detected