export enum NullOrUndefinedErrorCode { NOT_NULL_OR_UNDEFINED = "NOT_NULL_OR_UNDEFINED" } export function checkNullOrUndefined (mixed : any) : undefined|NullOrUndefinedErrorCode { if (mixed === null || mixed === undefined) { return undefined; } else { return NullOrUndefinedErrorCode.NOT_NULL_OR_UNDEFINED; } }