UNPKG

@resk/core

Version:

An innovative TypeScript framework that empowers developers to build applications with a fully decorator-based architecture for efficient resource management. By combining the power of decorators with a resource-oriented design, DecorRes enhances code cla

8 lines (7 loc) 253 B
/** * Checks if a value is nullable (null, undefined, NaN, or empty string). * * @param value - The value to check * @returns True if the value is considered nullable, false otherwise */ export declare function isNullable<T>(value: T): value is T;