inital upload
This commit is contained in:
11
node_modules/graphql/jsutils/isAsyncIterable.mjs
generated
vendored
Normal file
11
node_modules/graphql/jsutils/isAsyncIterable.mjs
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* 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'
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user