Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Created August 5, 2021 10:27
Show Gist options
  • Save NyaGarcia/74c032a9f0f184b57bf9c5cf41d2b47e to your computer and use it in GitHub Desktop.
Save NyaGarcia/74c032a9f0f184b57bf9c5cf41d2b47e to your computer and use it in GitHub Desktop.
Pipe scaffolding generated by the ng g pipe command
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'filterFalsy'
})
export class FilterFalsyPipe implements PipeTransform {
transform(value: unknown, ...args: unknown[]): unknown {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment