I'm noticing a slight change in default value output with the latest release (I may have skipped over a couple releases, so not exactly sure which one saw the change):
Default values is now wrapping string inside string.
I.e.
class MyCustomElement extends HTMLElement{
myProp = 'myProp'
}
I'm noticing a slight change in default value output with the latest release (I may have skipped over a couple releases, so not exactly sure which one saw the change):
Default values is now wrapping string inside string.
I.e.
produces:
rather than what I was getting before:
Is it deliberate to wrap string default values like this? If so, that's fine, I'll make the needed adjustments. But just wanted to make sure first.
Thanks again for this nice tool.