Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
144 B

  1. interface IsEmpty {
  2. (v: any): boolean
  3. }
  4. const isEmpty: IsEmpty = v => (
  5. typeof v === 'undefined'
  6. || v === null
  7. )
  8. export default isEmpty