@envelop/core
Version:
This is the core package for Envelop. You can find a complete documentation here: https://github.com/n1ru4l/envelop
11 lines (10 loc) • 457 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.useExtendContext = void 0;
const promise_helpers_1 = require("@whatwg-node/promise-helpers");
const useExtendContext = (contextFactory) => ({
onContextBuilding({ context, extendContext }) {
return (0, promise_helpers_1.handleMaybePromise)(() => contextFactory(context), result => extendContext(result));
},
});
exports.useExtendContext = useExtendContext;
;