(_license: License | null)
| 137 | } |
| 138 | |
| 139 | export const isValidLicenseActive = (_license: License | null): boolean => { |
| 140 | return ( |
| 141 | isValidOfflineLicenseActive() || |
| 142 | isValidOnlineLicenseActive(_license) |
| 143 | ); |
| 144 | } |
| 145 | |
| 146 | export const isAnonymousAccessAvailable = (_license: License | null): boolean => { |
| 147 | const offlineKey = getValidOfflineLicense(); |
nothing calls this directly
no test coverage detected