UNPKG

@bemoje/is-undefined

Version:

Check whether the provided value is undefined.

12 lines (10 loc) 234 B
/** * Check whether the provided value is undefined. * @method isUndefined * @param {*} value - The value to evaluate. * @returns {boolean} */ function isUndefined(value) { return value === void 0 } export default isUndefined;