UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

12 lines (9 loc) 241 B
import { isNotEmpty } from './chunk-YZ4U7P47.mjs'; // src/isNotEmpties.ts function isNotEmpties(...args) { if (args.length > 1) { return args.reduce((a, b) => a && isNotEmpty(b), true); } return false; } export { isNotEmpties };