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
Update elm/bytes _Bytes_read_string to use array instead of string as accumulator (#110)
Relates to #107 and elm/bytes#19.
Updated `_Bytes_read_string` to use array instead of string as
accumulator.
When compiling `rtfeldman/elm-css`, before changes:
```
elm-css % rm -rf guida-stuff; time ../guida-lang/compiler/bin/index.js make
Dependencies ready!
Success! Compiled 25 modules.
../guida-lang/compiler/bin/index.js make 21.36s user 2.76s system 101% cpu 23.686 total
```
After changes:
```
elm-css % rm -rf guida-stuff; time ../guida-lang/compiler/bin/index.js make
Dependencies ready!
Success! Compiled 25 modules.
../guida-lang/compiler/bin/index.js make 13.95s user 2.20s system 107% cpu 14.984 total
```
0 commit comments