@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
23 lines (18 loc) • 355 B
JavaScript
/*!
* @techmely/utils
* Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com>
* MIT Licensed
*/
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
};