UNPKG

is-not-null-or-undefined

Version:

A TypeScript utility function to check if a value is not null or undefined

5 lines 191 B
//#region lib/index.d.ts declare const isNotNullOrUndefined: <T>(input: T | null | undefined) => input is T; //#endregion export { isNotNullOrUndefined }; //# sourceMappingURL=index.d.mts.map