UNPKG

@typed-firestore/server

Version:

Elegant, typed abstractions for Firestore in server environments

8 lines (7 loc) 178 B
/** * Arrays only. Typically isEmpty does more than that, but we don't need it * here. */ export function isEmpty<T>(array: T[]): array is [] { return array.length === 0; }