1
0

StringUtils.ets 329 B

12345678910
  1. export class StringUtils {
  2. static isNullOrEmpty(value: string | null | undefined): boolean {
  3. return value === null || value === undefined || value === '' || value === 'null' || value === "null";
  4. }
  5. static isNotNullOrEmpty(value: string | null | undefined): boolean {
  6. return !StringUtils.isNullOrEmpty(value);
  7. }
  8. }