()
| 2 | * @returns {boolean} true when custom elements supported, otherwise false |
| 3 | */ |
| 4 | export function isProgressSupported() { |
| 5 | return ( |
| 6 | "customElements" in self && Boolean(HTMLElement.prototype.attachShadow) |
| 7 | ); |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * @returns {void} |
no outgoing calls
no test coverage detected
searching dependent graphs…