UNPKG

is-not-null-or-undefined

Version:

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

8 lines (7 loc) 193 B
//#region lib/index.ts const isNotNullOrUndefined = (input) => { return input !== null && input !== void 0; }; //#endregion export { isNotNullOrUndefined }; //# sourceMappingURL=index.mjs.map