UNPKG

@graphql-tools/load

Version:

A set of utils for faster development of GraphQL tools

7 lines (6 loc) 221 B
import { cwd } from 'process'; export function applyDefaultOptions(options) { options.cache = options.cache || {}; options.cwd = options.cwd || cwd(); options.sort = 'sort' in options ? options.sort : true; }