(a: string = '', b: string = '')
| 246 | } |
| 247 | |
| 248 | export function gte(a: string = '', b: string = ''): boolean { |
| 249 | return compareVersions(a, b) > -1; |
| 250 | } |
| 251 | |
| 252 | export const isReactNativeEnvironment = (): boolean => { |
| 253 | // We've been relying on this for such a long time |
no outgoing calls
no test coverage detected