DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
205 Bytes
import { reduce } from './reduce';
export function count(predicate) {
return reduce((total, value, i) => (!predicate || predicate(value, i) ? total + 1 : total), 0);
}
//# sourceMappingURL=count.js.map