(value: any)
| 492 | } |
| 493 | |
| 494 | function isInputAnnotation(value: any): value is Input { |
| 495 | return value.ngMetadataName === 'Input'; |
| 496 | } |
| 497 | |
| 498 | function splitByComma(value: string): string[] { |
| 499 | return value.split(',').map((piece) => piece.trim()); |
no outgoing calls
no test coverage detected
searching dependent graphs…