Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

8 satır
138 B

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