handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
13 lines (12 loc) • 335 B
JavaScript
;
exports.__esModule = true;
exports.isNullishOrNaN = isNullishOrNaN;
/**
* Returns `true` if the value is one of the type: `null`, `undefined` or `NaN`.
*
* @param {*} value The value to check.
* @returns {boolean}
*/
function isNullishOrNaN(value) {
return value === null || value === undefined || isNaN(value);
}