()
| 8 | const isChrome = () => !!window.chrome; |
| 9 | |
| 10 | export const getMaxElementSize = (): number => { |
| 11 | if (isBrowser()) { |
| 12 | if (isChrome()) { |
| 13 | return CHROME_MAX_ELEMENT_SIZE; |
| 14 | } |
| 15 | } |
| 16 | return DEFAULT_MAX_ELEMENT_SIZE; |
| 17 | }; |
no test coverage detected
searching dependent graphs…