(code: string)
| 43 | } |
| 44 | |
| 45 | function patchFigmaDelete(code: string): string { |
| 46 | return code.replaceAll(FIGMA_DELETE_PATCH_TARGET, FIGMA_DELETE_PATCH_VALUE) |
| 47 | } |
| 48 | |
| 49 | export async function rewriteCurrentScript(groups: Group[]): Promise<void> { |
| 50 | const current = getCurrentScript() |
no outgoing calls
no test coverage detected