TenantAtlas/apps/platform/.pnpm-store/v10/files/3d/14f2c3ddc8077279b5359215f413b8e8c5c307abc988ca54441a8eea89ab7761067ebb96061a587a67c3c2d73e7b9913867a83ba8144df5e7c836a67789ca6
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

6 lines
192 B
Plaintext

import { isFunction } from './isFunction';
export function isAsyncIterable<T>(obj: any): obj is AsyncIterable<T> {
return Symbol.asyncIterator && isFunction(obj?.[Symbol.asyncIterator]);
}