typedash
Version:
modern, type-safe collection of utility functions
13 lines (12 loc) • 388 B
JavaScript
//#region src/functions/isNonNullable/isNonNullable.ts
/**
* Checks if a value is not null or undefined.
* @param value The value to inspect.
* @returns Returns `true` if the value is NOT `null` or `undefined`, or `false` otherwise.
*/
function isNonNullable(value) {
return value != null;
}
//#endregion
export { isNonNullable as t };
//# sourceMappingURL=isNonNullable-R6aBvEDc.js.map