9 lines
225 B
Plaintext
9 lines
225 B
Plaintext
// @flow strict
|
|
|
|
const nodejsCustomInspectSymbol =
|
|
typeof Symbol === 'function' && typeof Symbol.for === 'function'
|
|
? Symbol.for('nodejs.util.inspect.custom')
|
|
: undefined;
|
|
|
|
export default nodejsCustomInspectSymbol;
|