(content: string, key: string)
| 183 | return content.slice(0, startIndex) + newValue + content.slice(endIndex + 1); |
| 184 | } |
| 185 | export function extractArrayValueFromTsManifest(content: string, key: string): string | null { |
| 186 | const [startIndex, endIndex] = findArrayIndicesTsManifest(content, key); |
| 187 | return content.slice(startIndex, endIndex + 1); |
| 188 | } |
| 189 | |
| 190 | export function extractFromTs( |
| 191 | manifest: string, |
no test coverage detected