Sha256: 69ff56a8083540c8559dc65fb9f1b3b28fd6a9a747bb22344a8bce06c9ad4202
Contents?: true
Size: 481 Bytes
Versions: 26
Compression:
Stored size: 481 Bytes
Contents
'use strict'; Object.defineProperty(exports, '__esModule', { value: true, }); exports.isAsyncIterable = isAsyncIterable; /** * Returns true if the provided object implements the AsyncIterator protocol via * implementing a `Symbol.asyncIterator` method. */ 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