devalue icon indicating copy to clipboard operation
devalue copied to clipboard

Symbol descriptions are printed literally

Open SteelAlloy opened this issue 2 years ago • 0 comments

When devaluing a Symbol with either devalue.uneval or devalue.stringify, the description string is printed as is instead of keeping it as a string.

devalue.uneval(Symbol("test")) // "Symbol(test)"

devalue.uneval(Symbol("test\n")) // "Symbol(test
// )"

SteelAlloy avatar Oct 03 '23 22:10 SteelAlloy