UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

9 lines 259 B
/** * Returns `true` if the value is one of the type: `null`, `undefined` or `NaN`. * * @param {*} value The value to check. * @returns {boolean} */ export function isNullishOrNaN(value) { return value === null || value === undefined || isNaN(value); }