Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
checkDefined.d.ts 368 B
/**
 * check if the input is undefined or null
 * @param input - input pointer
 * @returns true undefined or null
 */
export declare function undefinedOrNull(input: any): boolean;
/**
 * check if the input is defined and not null
 * @param input - input pointer
 * @returns true defined and not null
 */
export declare function definedAndNotNull(input: any): boolean;