(el)
| 935 | // Safe show/hide that work with both CSS and [hidden] |
| 936 | const unhide = (el) => { if (!el) return; el.removeAttribute('hidden'); el.style.display = ''; }; |
| 937 | const hideEl = (el) => { if (!el) return; el.setAttribute('hidden', ''); el.style.display = 'none'; }; |
| 938 | const show = (el) => { |
| 939 | if (!el) return; |
| 940 | el.hidden = false; el.classList?.remove('d-none', 'hidden'); |
no outgoing calls
no test coverage detected