# isIterable
```ts
/**
 * 是否是可遍历对象
 * @category Object
 */
export declare const isIterable: <T>(o: any) => o is Iterable<T>;

```
