UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

20 lines (15 loc) 261 B
/*! * @techmely/utils * Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com> * MIT Licensed */ import { isEmpty } from "./chunk-TL3CTVEM.mjs"; // src/isNotEmpty.ts function isNotEmpty(val) { return !isEmpty(val); } export { isNotEmpty };