Skip to content

Instantly share code, notes, and snippets.

@DevEarley
Last active July 6, 2020 15:04
Show Gist options
  • Select an option

  • Save DevEarley/abbac578b90900cfd3517a62eda9dacd to your computer and use it in GitHub Desktop.

Select an option

Save DevEarley/abbac578b90900cfd3517a62eda9dacd to your computer and use it in GitHub Desktop.
Angular pipe
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'myPipe'
})
export class MyPipe implements PipeTransform {
transform(value, args?) {
return //... logic goes here ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment