()
| 189 | // gate on this so users on browsers we don't ship for never get dragged into |
| 190 | // a flow that can never complete for them. Only Chrome and Edge ship today. |
| 191 | export const isExtensionCapableBrowser = (): boolean => { |
| 192 | const name = getCurrentBrowserName(); |
| 193 | return name === BrowserName.Chrome || name === BrowserName.Edge; |
| 194 | }; |
| 195 | |
| 196 | export const shuffleArray = <T>(array: T[]): T[] => { |
| 197 | const newArray = array.slice(); |
no test coverage detected