(re: RegExp)
| 23 | } |
| 24 | |
| 25 | function testPlatform(re: RegExp) { |
| 26 | return typeof window !== 'undefined' && window.navigator != null |
| 27 | ? re.test(window.navigator['userAgentData']?.platform || window.navigator.platform) |
| 28 | : false; |
| 29 | } |
| 30 | |
| 31 | function cached(fn: () => boolean) { |
| 32 | if (process.env.NODE_ENV === 'test') { |