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
This tool is great but it should be updated with new es6 syntax ...
For example it does not recognize ".?"
eg.
myObject?.myProp?.myNestedprop will be "prettyfied" to myObject ? .myProp ? .myNestedprop
or
var x = y?? "default" will be "prettyfied" to var x = y ? ? "default"
Or maybe I'm missing some option to turn on/off in the settings?
The text was updated successfully, but these errors were encountered:
I searched issues but maybe not found.
This tool is great but it should be updated with new es6 syntax ...
For example it does not recognize ".?"
eg.
myObject?.myProp?.myNestedprop will be "prettyfied" to myObject ? .myProp ? .myNestedprop
or
var x = y?? "default" will be "prettyfied" to var x = y ? ? "default"
Or maybe I'm missing some option to turn on/off in the settings?
The text was updated successfully, but these errors were encountered: