firstNotUndefined.d.ts 87 B

12
  1. declare function firstNotUndefined<T>(arr?: T[]): T;
  2. export default firstNotUndefined;