(pipe: Type<any>, value: Object)
| 123 | } |
| 124 | |
| 125 | function assertPipeArgument(pipe: Type<any>, value: Object): void { |
| 126 | if (typeof value !== 'string') { |
| 127 | throw invalidPipeArgumentError(pipe, value); |
| 128 | } |
| 129 | } |
no test coverage detected
searching dependent graphs…