I'm using ngx-translate 11.x with angular 7 in a huge project.
When use pipe
transform show first empty string And when use directive
, show first path to translate string.
Directive way: <span [translate]="HELLO'"></span>
Pipe way: <span >{{'HELLO'| translate}}</span>
Now, Which performance are better?