packages/store/schematics/src/utils/common/properties.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export function isEmpty(value: string | undefined): boolean {
  return typeof value !== 'undefined' && !value.trim().length;
}