mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
fix(cli/js/symbols): Update symbol descriptions (#4878)
Don't use Symbol.for() to define Deno.symbols.customInspect.
This commit is contained in:
parent
0c47cd6785
commit
b33685e94b
3 changed files with 3 additions and 3 deletions
|
@ -954,7 +954,7 @@ export class Console {
|
|||
}
|
||||
}
|
||||
|
||||
export const customInspect = Symbol.for("Deno.customInspect");
|
||||
export const customInspect = Symbol("Deno.symbols.customInspect");
|
||||
|
||||
export function inspect(
|
||||
value: unknown,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue