public isNullOrEmpty()

in src/Utility.ts [29:31]


  public isNullOrEmpty(str: string): boolean {
    return str === null || str === undefined || str === "";
  }