nodejsCustomInspectSymbol.js.flow 307 B

12345678
  1. // @flow strict
  2. // istanbul ignore next (See: 'https://github.com/graphql/graphql-js/issues/2317')
  3. const nodejsCustomInspectSymbol =
  4. typeof Symbol === 'function' && typeof Symbol.for === 'function'
  5. ? Symbol.for('nodejs.util.inspect.custom')
  6. : undefined;
  7. export default nodejsCustomInspectSymbol;