UNPKG

@graphql-tools/resolvers-composition

Version:

Common package containing utils and types for GraphQL tools

10 lines (9 loc) 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.chainFunctions = chainFunctions; function chainFunctions(funcs) { if (funcs.length === 1) { return funcs[0]; } return funcs.reduce((a, b) => (...args) => a(b(...args))); }