Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
19 lines
481 B
Plaintext
19 lines
481 B
Plaintext
'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'
|
|
);
|
|
}
|