(factor: string)
| 78 | }; |
| 79 | |
| 80 | export const isStringFactor = (factor: string): factor is StringFactor => { |
| 81 | return StringFactorList.includes(factor as StringFactor); |
| 82 | }; |
| 83 | |
| 84 | export const isBooleanFactor = (factor: string): factor is BooleanFactor => { |
| 85 | return BooleanFactorList.includes(factor as BooleanFactor); |
no outgoing calls
no test coverage detected