UNPKG

siegel

Version:

Web application development ecosystem

9 lines (8 loc) 203 B
/** * Check if value is null or undefned * * @param val - Value to check * @returns true if value is undefined or null */ declare const isNullable: (val: any) => boolean; export default isNullable;