Jascha Ephraim

Results 8 comments of Jascha Ephraim

Just to add some information: ``` option(value='1' selected='selected') Whatever ``` ... works fine, but: ``` if something_true option(value='1' selected='selected') Whatever ``` ... will strip the selected attribute.

The `selected` attribute is stripped in that case as well.

Yes, that's why it's an issue that it doesn't work (at least when I checked a few days ago). Whenever the `selected` attribute in particular was present with a variable...

No, I assure you this is a valid issue. ``` jade option(selected='selected' someattr='selected') option(selected=trueVar someattr=trueVar) if trueVar option(selected='selected' someattr='selected') | | | ``` results in: ``` html ```

Same issue: ``` Atom : 1.21.2 Electron: 1.6.15 Chrome : 56.0.2924.87 Node : 7.4.0 ``` ``` xo: 0.18.2 linter-xo: 0.23.1 ``` ``` Definition for rule 'unicorn/catch-error-name' was not found Definition...

I think the reason that worked is because the REPL was using an old version of TypeScript (v4.4.4). Starting with the following version the casting no longer works. Here's an...

When importing and calling like this: ```javascript import multiInput from 'rollup-plugin-multi-input'; multiInput(); ``` I received the error `multiInput is not a function`. I was able to work around it by...

I wrote a quick and dirty command to use until the feature is released: https://github.com/jaschaephraim/gvtimports