short.ts 225 Bytes
import { PipeTransform, Pipe } from "@angular/core";

@Pipe ({
    name: 'short'
})
export class ShortPipe implements PipeTransform {
    transform(value: string): string {
        return value.substr(0, 25) + ' ...';
    }
}