ngxs/schematics

View on GitHub
src/utils/common/properties.ts

Summary

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