(index: number, offset: number, v1: any)
| 169 | * @codeGenApi |
| 170 | */ |
| 171 | export function ɵɵpipeBind1(index: number, offset: number, v1: any): any { |
| 172 | const adjustedIndex = index + HEADER_OFFSET; |
| 173 | const lView = getLView(); |
| 174 | const pipeInstance = load<PipeTransform>(lView, adjustedIndex); |
| 175 | return isPure(lView, adjustedIndex) |
| 176 | ? pureFunction1Internal( |
| 177 | lView, |
| 178 | getBindingRoot(), |
| 179 | offset, |
| 180 | pipeInstance.transform, |
| 181 | v1, |
| 182 | pipeInstance, |
| 183 | ) |
| 184 | : pipeInstance.transform(v1); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Invokes a pipe with 2 arguments. |
nothing calls this directly
no test coverage detected