MCPcopy Index your code
hub / github.com/nodejs/node / isAsyncIterable

Function isAsyncIterable

lib/internal/quic/quic.js:1507–1509  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

1505}
1506
1507function isAsyncIterable(obj) {
1508 return obj != null && typeof obj[SymbolAsyncIterator] === 'function';
1509}
1510
1511function isSyncIterable(obj) {
1512 return obj != null && typeof obj[SymbolIterator] === 'function';

Callers 1

configureOutboundFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…