(text: string, path: Array<string | number>, value: unknown, insert = false)
| 166 | } |
| 167 | |
| 168 | function patch(text: string, path: Array<string | number>, value: unknown, insert = false) { |
| 169 | return applyEdits( |
| 170 | text, |
| 171 | modify(text, path, value, { |
| 172 | formattingOptions: { |
| 173 | tabSize: 2, |
| 174 | insertSpaces: true, |
| 175 | }, |
| 176 | isArrayInsertion: insert, |
| 177 | }), |
| 178 | ) |
| 179 | } |
| 180 | |
| 181 | function patchPluginList( |
| 182 | text: string, |
no outgoing calls
no test coverage detected