UNPKG
is-not-null-or-undefined
Version:
latest (1.0.2)
1.0.2
1.0.1
A TypeScript utility function to check if a value is not null or undefined
is-not-null-or-undefined
/
dist
/
index.d.mts
5 lines
•
191 B
text/typescript
View Raw
1
2
3
4
5
//#region lib/index.d.ts
declare
const
isNotNullOrUndefined
: <T>
(
input
: T |
null
|
undefined
) =>
input is T;
//#endregion
export
{ isNotNullOrUndefined };
//# sourceMappingURL=index.d.mts.map