We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca773fd commit c003671Copy full SHA for c003671
src/symbol.ts
@@ -48,15 +48,6 @@ export class BSONSymbol extends BSONValue {
48
return new BSONSymbol(doc.$symbol);
49
}
50
51
- /** @internal */
52
- [Symbol.for('nodejs.util.inspect.custom')](
53
- depth?: number,
54
- options?: unknown,
55
- inspect?: InspectParameterFn
56
- ): string {
57
- return this.inspect(depth, options, inspect);
58
- }
59
-
60
inspect(depth?: number, options?: unknown, inspect?: InspectParameterFn): string {
61
const addQuotes = !inspect;
62
inspect ??= defaultInspect;
0 commit comments