UNPKG

ngx-collapsible-sidebar

Version:

A simple sidenav that gives the functionality for the collapsed view of the sidebar.

11 lines (9 loc) 298 B
import {Pipe, PipeTransform} from '@angular/core'; @Pipe({ name: 'truncate' }) export class TruncatePipe implements PipeTransform { transform(value: string, limit: number = 20, trail: string = '...'): string { return value.length > limit ? value.substring(0, limit) + trail : value; } }