(input: unknown)
| 769 | * @since 2.0.0 |
| 770 | */ |
| 771 | export const isIterable = (input: unknown): input is Iterable<unknown> => |
| 772 | typeof input === "string" || hasProperty(input, Symbol.iterator) |
| 773 | |
| 774 | /** |
| 775 | * A refinement that checks if a value is a record (i.e., a plain object). |