UNPKG

tlojs

Version:

The Last One - The last npm package you'll need to install

12 lines (10 loc) 273 B
import { TableCell } from "../cell"; import { TablePlugin } from "../table-plugin"; export class Min implements TablePlugin<number> { name = 'min' execute(cells: TableCell<unknown>[]): number { return cells .select(x => x.value as number) .min() } }