sindresorhus/type-fest

`EmptyArray` type

Ouverte

#929 ouverte le 6 août 2024

 (2 commentaires) (0 réaction) (0 personne assignée)TypeScript (471 forks)batch import
help wantedtype addition

Métriques du dépôt

Stars
 (12 328 étoiles)
Métriques de merge PR
 (Merge moyen 3j 5h) (11 PRs mergées en 30 j)

Description

There is EmptyObject, and I think a EmptyArray type for a strictly empty array would be useful.

One use case of empty array with React to avoid re-renders because of unstable default prop:

const defaultArr = [];
const Component = ({arr = defaultArr}) => arr.join(",");

Guide contributeur