UNPKG

angular-4-data-table

Version:

An Angular 4 data table, with pagination, sorting, expandable rows etc.

12 lines (9 loc) 237 B
import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'min' }) export class MinPipe implements PipeTransform { transform(value: number[], args: string[]): any { return Math.min.apply(null, value); } }