UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

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