Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

8 rader
138 B

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