Sha256: 3d286426c1dc540bccf669441b88789343d29c9e1e8191c89e44ccbc6568d264
Contents?: true
Size: 363 Bytes
Versions: 26
Compression:
Stored size: 363 Bytes
Contents
/** * Returns true if the provided object implements the AsyncIterator protocol via * implementing a `Symbol.asyncIterator` method. */ export function isAsyncIterable(maybeAsyncIterable) { return ( typeof (maybeAsyncIterable === null || maybeAsyncIterable === void 0 ? void 0 : maybeAsyncIterable[Symbol.asyncIterator]) === 'function' ); }
Version data entries
26 entries across 26 versions & 1 rubygems