summaryrefslogtreecommitdiff
path: root/alarm/node_modules/graphql/jsutils/isAsyncIterable.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/graphql/jsutils/isAsyncIterable.mjs')
-rw-r--r--alarm/node_modules/graphql/jsutils/isAsyncIterable.mjs10
1 files changed, 0 insertions, 10 deletions
diff --git a/alarm/node_modules/graphql/jsutils/isAsyncIterable.mjs b/alarm/node_modules/graphql/jsutils/isAsyncIterable.mjs
deleted file mode 100644
index 444e87c..0000000
--- a/alarm/node_modules/graphql/jsutils/isAsyncIterable.mjs
+++ /dev/null
@@ -1,10 +0,0 @@
-import { SYMBOL_ASYNC_ITERATOR } from "../polyfills/symbols.mjs";
-/**
- * Returns true if the provided object implements the AsyncIterator protocol via
- * either implementing a `Symbol.asyncIterator` or `"@@asyncIterator"` method.
- */
-
-// eslint-disable-next-line no-redeclare
-export default function isAsyncIterable(maybeAsyncIterable) {
- return typeof (maybeAsyncIterable === null || maybeAsyncIterable === void 0 ? void 0 : maybeAsyncIterable[SYMBOL_ASYNC_ITERATOR]) === 'function';
-}