Harry Sarson
Harry Sarson
https://github.com/infusion/Complex.js/issues/24#issuecomment-371865945 says it should not
For (7b) could we qnot have `Infinity ^ z === 0` if the real part of `z` is negative. Wolfram agrees: . I can buy that (1), (3) and (4)...
To summarise for any complex `z`: 1) `z ^ Infinity === NaN` 2) `Infinity ^ z === Infinity` if `Im(z) === 0` and `Re(z) > 0` 3) `Infinity ^ z...

I investigated equality with `Cmd`'s, running the following tests on elm 18 ```elm module CmdEqualitySpec exposing (suite) import Expect import Test exposing (..) import Task import Http type Msg =...
So `Cmd`s are comparable however: - Comparing two different commands that should be indentical throws an error. - `Cmd.map` always creates a different `Cmd` even if called with `identity`. -...
I get this on Debian GNU/Linux buster/sid with the default terminal and elm v0.18.0
You can make a port and call out to it when custom variables need updating. That is how I am working around the bug currently. ### In js ```js app.ports.setCssProp.subscribe(([selector,...
Are the any insurmountable issues with patching this in the compiled js? ``` elm make ... --output elm-needs-patching.js sed s/domNodeStyle[key] = styles[key]/domNodeStyle.setProperty(key, styles[key])/ elm-needs-patching.js > elm.js # minify etc ````...
See my PR https://github.com/elm/virtual-dom/pull/127, there are back compat concerns so it cannot be merged as is. I don't think it would be impossible to resolve those though if someone wanted...