(oldScript: string, newScript: string)
| 988 | // ─── GSAP script patch helpers ─────────────────────────────────────────────── |
| 989 | |
| 990 | function gsapScriptChange(oldScript: string, newScript: string): MutationResult { |
| 991 | const path = gsapScriptPath(); |
| 992 | return { |
| 993 | forward: [{ op: "replace", path, value: newScript }], |
| 994 | inverse: [{ op: "replace", path, value: oldScript }], |
| 995 | }; |
| 996 | } |
| 997 | |
| 998 | // ─── Phase 3b handlers ─────────────────────────────────────────────────────── |
| 999 |
no test coverage detected