export function isEmptyStr()

in src/utils/common.ts [20:22]


export function isEmptyStr(input: any) {
  return (input === null || input === undefined || input === '');
}