Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

isEmpty.ts 144 B

12345678910
  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