Most voted "pipe" questions
6 questions
Sort by count of
-
3
votes2
answers124
viewsUnit tests for Pipe tap() in Angular
I would like to test tap() inside my Pipe to cover this code snippet, just missing it so that I reach 100% test coverage. fromEvent(this.input.nativeElement, 'keyup') .pipe( debounceTime(150),…
-
0
votes1
answer43
viewsSearch pipe filter does not update changes to my template
I own the following search pipe filter: import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'search' }) export class SearchPipe implements PipeTransform { transform(items: any[],…
-
0
votes1
answer41
viewsError: . toLowerCase() is not Function No Pipe search Ionic3
Good afternoon, I created a pipe to search, but is giving the following error: My code: import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'search', }) export class SearchPipe…
-
0
votes1
answer1539
viewsHow to make a filter component with angular 8
all good? I’m having a hard time creating a filter on my site. The problem is, I created a specific component with the input and another that receives the list of items, I need to do the search in…
-
0
votes1
answer71
viewsAngular 7 Pipe does not work even exported and declared in main module
Hello, I have a Pipe that turns a number into a string saying the referring month. import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'nomeMesPipe', }) export class NomeMesPipe…
-
-1
votes1
answer63
viewsAsynchronous Communication
I intend to implement private asynchronous communication (in python) in order to test some cryptographic algorithms. The goal would be to have an Emmiter that sends the encrypted message and have a…