UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

36 lines (32 loc) 583 B
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import './dep-10a947a6.mjs'; /** * Checks if `value` is `null` or `undefined`. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is nullish, else `false`. * @example * * _.isNil(null); * // => true * * _.isNil(void 0); * // => true * * _.isNil(NaN); * // => false */ function isNil(value) { return value == null; } var isNil_1 = isNil; export { isNil_1 as i }; //# sourceMappingURL=dep-1cab4dbd.mjs.map