You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Format as a floating point value.constvalue=args[a++];if(typeofvalue=="symbol"){formattedArg="NaN";}else{formattedArg=`${NumberParseFloat(value)}`;}
if im not mistaken, this
deno/ext/console/01_console.js
Lines 3120 to 3127 in a1d823e
should be
according to the spec:
https://console.spec.whatwg.org/#formatter
example of bug:
should print:
0.5
In Chrome:
Firefox:
https://bugzilla.mozilla.org/show_bug.cgi?id=1846606
current Deno:
The text was updated successfully, but these errors were encountered: