UNPKG

util-ex

Version:

Browser-friendly enhanced util fully compatible with standard node.js

9 lines (8 loc) 236 B
/** * Checks if a given value is empty. * * @param {*} value - The value to check. * @returns {boolean} - Returns `true` if the value is empty, else `false`. */ export function isEmpty(value: any): boolean; export default isEmpty;