()
| 1 | export function ensureKeyframes() { |
| 2 | if (!(window as any).__rno_kf_s) { |
| 3 | const style = (window as any).__rno_kf_s = document.createElement('style'); |
| 4 | style.textContent = `@keyframes rough-notation-dash { to { stroke-dashoffset: 0; } }`; |
| 5 | document.head.appendChild(style); |
| 6 | } |
| 7 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…