(ev?: Event)
| 5 | export const prevent = (ev?: Event) => ev?.preventDefault(); |
| 6 | |
| 7 | export const stop = (ev?: Event) => ev?.stopPropagation(); |
| 8 | |
| 9 | export const loadStyle = async (href: string) => { |
| 10 | const link = document.createElement('link'); |
nothing calls this directly
no outgoing calls
no test coverage detected