Initialisation
Added the packages and files for the backend server
This commit is contained in:
10
node_modules/@graphql-tools/utils/cjs/isAsyncIterable.js
generated
vendored
Normal file
10
node_modules/@graphql-tools/utils/cjs/isAsyncIterable.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.isAsyncIterable = void 0;
|
||||
function isAsyncIterable(value) {
|
||||
return (typeof value === 'object' &&
|
||||
value != null &&
|
||||
Symbol.asyncIterator in value &&
|
||||
typeof value[Symbol.asyncIterator] === 'function');
|
||||
}
|
||||
exports.isAsyncIterable = isAsyncIterable;
|
||||
Reference in New Issue
Block a user