UNPKG

@envelop/core

Version:

This is the core package for Envelop. You can find a complete documentation here: https://github.com/n1ru4l/envelop

7 lines (6 loc) 284 B
import { handleMaybePromise } from '@whatwg-node/promise-helpers'; export const useExtendContext = (contextFactory) => ({ onContextBuilding({ context, extendContext }) { return handleMaybePromise(() => contextFactory(context), result => extendContext(result)); }, });