UNPKG

@graphql-mesh/utils

Version:
5 lines (4 loc) 167 B
import { isPromise } from '@graphql-tools/utils'; export function mapMaybePromise(value, mapper) { return isPromise(value) ? value.then(mapper) : mapper(value); }