isIterable.d.ts 153 B

12
  1. /** Returns whether the payload is an iterable (regular or async) */
  2. export declare function isIterable(payload: unknown): payload is Iterable<unknown>;