manifold/common/util/array.ts
James Grugett 552e6e6c3a
Custom feed (#43)
* Show custom feed of contracts from folds your follow or have bet on.

* Add tw-elements UI library

* Add loading spinner while feed loads

* Switch from onSnapshot to our listenForValues, which doesn't set with partial cached values

* Change home tags to communities

* Remove tw-elements for now
2022-02-03 18:13:04 -06:00

4 lines
115 B
TypeScript

export function filterDefined<T>(array: (T | null | undefined)[]) {
return array.filter((item) => item) as T[]
}