Skip to content

Instantly share code, notes, and snippets.

@AbuzerAsif
Last active April 3, 2019 11:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save AbuzerAsif/db987a2381fe24316f15d71dab6b35c3 to your computer and use it in GitHub Desktop.
Angular Custom Pipes and How it works https://embarkcode.com/angular-custom-pipes/
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'myCustomPipe'
})
export class MyCustomPipe implements PipeTransform {
transform(value:number, param1?:any, param2?:any):number {
return (value * param1) / param2; // returns 50
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment