Skip to content

Instantly share code, notes, and snippets.

@Qarun-Qadir-Bissoondial
Created April 9, 2020 13:23
Show Gist options
  • Save Qarun-Qadir-Bissoondial/2ab237444b158414e29c96a3a936a9aa to your computer and use it in GitHub Desktop.
Save Qarun-Qadir-Bissoondial/2ab237444b158414e29c96a3a936a9aa to your computer and use it in GitHub Desktop.
Pipes Demo - Order Suffix
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'orderSuffix'
})
export class OrderSuffixPipe implements PipeTransform {
transform(value: any, args?: any): any {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment