Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

6 líneas
142 B

  1. import * as fc from 'fast-check'
  2. export const nonObject = () => fc
  3. .anything()
  4. .filter(v => !['object', 'undefined'].includes(typeof v))