swc/bundler/tests/.cache/deno/51b9676d22bfed0b3e6e4a6e02abdfffec697446.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

16 lines
496 B
TypeScript

// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/utilities/concatAST.js
import flatMap from '../polyfills/flatMap.js';
/**
* Provided a collection of ASTs, presumably each from different files,
* concatenate the ASTs together into batched AST, useful for validating many
* GraphQL source files which together represent one conceptual application.
*/
export function concatAST(asts) {
return {
kind: 'Document',
definitions: flatMap(asts, ast => ast.definitions)
};
}