UNPKG

@ai-sdk/provider-utils

Version:
4 lines (3 loc) 153 B
export function isAsyncIterable<T = any>(obj: any): obj is AsyncIterable<T> { return obj != null && typeof obj[Symbol.asyncIterator] === 'function'; }