(win: Window, query: string)
| 111 | export const testUserAgent = (win: Window, expr: RegExp) => expr.test(win.navigator.userAgent); |
| 112 | |
| 113 | const matchMedia = (win: Window, query: string): boolean => win.matchMedia?.(query).matches; |
| 114 | |
| 115 | export type PlatformConfig = Partial<typeof PLATFORMS_MAP>; |
| 116 |