( propSupportVariable: boolean | undefined, globalSupportVariable: boolean, )
| 127 | * @returns |
| 128 | */ |
| 129 | export function shouldUseVariableSetter( |
| 130 | propSupportVariable: boolean | undefined, |
| 131 | globalSupportVariable: boolean, |
| 132 | ) { |
| 133 | if (propSupportVariable === false) return false; |
| 134 | return propSupportVariable || globalSupportVariable; |
| 135 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…