UNPKG

@graphql-mesh/transform-prefix

Version:
6 lines (5 loc) 235 B
import BarePrefix from './barePrefix.js'; import WrapPrefix from './wrapPrefix.js'; export default (function PrefixTransform(options) { return options.config.mode === 'bare' ? new BarePrefix(options) : new WrapPrefix(options); });