UNPKG

better-npm-init

Version:

A better version of npm init, with templates and more. Usage: better-npm-init <template> [--yarn] [--install] [--git] [--yes] [--help]

5 lines 223 B
import { reduce } from './reduce'; export function count(predicate) { return reduce(function (total, value, i) { return (!predicate || predicate(value, i) ? total + 1 : total); }, 0); } //# sourceMappingURL=count.js.map