Age | Commit message (Collapse) | Author |
|
|
|
(#7778)" (#7973)
This reverts commit f75bd89aff7cffafceb394d629995479af54a156.
|
|
This commit adds the ability for users to inspect items stylized
with ANSI colors regardless of the value of Deno.noColor.
|
|
This commit fixes the inspection of functions. The current
implementation gets the name of the type of the function
from "f.__proto__.constructor.name", and it throws when
the prototype is set to null.
This commit checks the prototype before accessing its
constructor name and uses the generic name 'Function'
if the prototype is not available.
|
|
|
|
(#7869)
|
|
|
|
|
|
Ref: https://github.com/denoland/deno/pull/7516#pullrequestreview-489567120
|
|
|
|
Fixes #7650
|
|
This quotes and escapes symbol descriptions that contains characters
outside of the basic alpha-numeric identifier range.
|
|
This encloses symbol keys when used in objects with brackets (e.g
[Symbol("Symbol.iterator")]).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|