export class StringUtils { public static IsNullOrEnptyWhiteSpace(str: string | undefined): boolean { return str === null || str === undefined || str.trim() === ""; } }