2015-04-19 16:53:18 -04:00
2015-04-22 11:06:51 -04:00
p.location-badge.
2015-04-23 11:27:36 -04:00
exported from <a href="/angular2/pipes.html">angular2/pipes</a>
2015-04-19 16:53:18 -04:00
defined in <a href="https://github.com/angular/angular/tree/master/modules/angular2/src/change_detection/pipes/pipe.js#L32">angular2/src/change_detection/pipes/pipe.js (line 32)</a>
:markdown
An interface for extending the list of pipes known to Angular.
2015-04-26 11:01:04 -04:00
If you are writing a custom <a href='Pipe-class.html'><code>Pipe</code></a>, you must extend this interface.
2015-04-19 16:53:18 -04:00
#Example
```
class DoublePipe extends Pipe {
supports(obj) {
return true;
}
transform(value) {
return `${value}${value}`;
}
}
```
.l-main-section
h2 Members
.l-sub-section
h3 onDestroy
pre.prettyprint
code.
2015-04-20 16:57:43 -04:00
onDestroy()
2015-04-19 16:53:18 -04:00
:markdown
.l-sub-section
h3 supports
pre.prettyprint
code.
2015-04-20 16:57:43 -04:00
supports(obj)
2015-04-19 16:53:18 -04:00
:markdown
.l-sub-section
h3 transform
pre.prettyprint
code.
2015-04-20 16:57:43 -04:00
transform(value:any)
2015-04-19 16:53:18 -04:00
:markdown