(input: string)
| 24 | import {NgtscTestEnvironment} from './env'; |
| 25 | |
| 26 | const trim = (input: string): string => input.replace(/\s+/g, ' ').trim(); |
| 27 | |
| 28 | const varRegExp = (name: string): RegExp => new RegExp(`const \\w+ = \\[\"${name}\"\\];`); |
| 29 |
no test coverage detected
searching dependent graphs…