xdesign-vue-next
Version:
XDesign Component for vue-next
33 lines (29 loc) • 540 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import './dep-10a947a6.mjs';
/**
* Checks if `value` is `null`.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is `null`, else `false`.
* @example
*
* _.isNull(null);
* // => true
*
* _.isNull(void 0);
* // => false
*/
function isNull(value) {
return value === null;
}
var isNull_1 = isNull;
export { isNull_1 as i };
//# sourceMappingURL=dep-5a2ce53e.mjs.map