typedash
Version:
modern, type-safe collection of utility functions
10 lines • 408 B
TypeScript
//#region src/functions/isNonNullable/isNonNullable.d.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.
*/
declare function isNonNullable<T>(value: T): value is NonNullable<T>;
//#endregion
export { isNonNullable as t };
//# sourceMappingURL=isNonNullable-BYMTCM9c.d.ts.map