Harry Sarson
Harry Sarson
As I said in the description: > I would like to argue that this is a bug fix rather than an enhancement as currently elm **silently fails** to add these...
Ah man! That is so annoying! Javascript isba pita some times. Thanks for spotting. I worry that the alternative might be slower (I guess up to two times?) as we...
Is there a small example of an elm program that gives this error when run?
Here is @Carlsson87's sscce: ```elm module Main exposing (main) import Html import Html.Attributes main = Html.div [ Html.Attributes.attribute "" "" ] [] ```
Same as above but copied into a gist for folk reading this in more than two weeks time: https://gist.github.com/harrysarson/234436a9f0517e14d0fd67fd63ba6619
I cannot reproduce on Firefox on Windows.
``` > JE.object [ ("a", JE.list identity []) ] == JE.object [] True : Bool > JE.object [ ("a", JE.object []) ] == JE.object [] True : Bool ``` These...
There is one more case ``` > JE.object [ ] == JE.list identity [] True : Bool ``` Maybe it is okay to say these two are equal? After all...
(Cross posting from slack.) Currently the kernel code backing string decoding looks like: ```js var _Bytes_read_string = F3(function(len, bytes, offset) { var string = ''; var end = offset +...