UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

8 lines (6 loc) • 272 B
import { iterator as Symbol_iterator } from '../symbol/iterator'; import { isFunction } from './isFunction'; /** Identifies an input as being an Iterable */ export function isIterable(input: any): input is Iterable<any> { return isFunction(input?.[Symbol_iterator]); }