UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 167 B
export function count(array, predicate) { if (!array) { return 0; } if (!predicate) { return array.length; } return array.filter(predicate).length; }