Closed kamilogorek closed 1 year ago
cc @dsherret @bartlomieju
Can I ask for actions reapproval?
@kamilogorek done
Uh, did deno lint
and deno fmt
but forgot that it also consists of rust code and didn't run rust fmt
🙄
deno lint && deno fmt && deno test -A && cargo fmt && cargo test
Should be good now
@kamilogorek Windows CI is still not happy
Updated. I didnt pull EOL
from deno_std/fs
nor use isWindows
from deno_std/_util/os
as it's a simple oneliner, and for pulling whole dep for one tests sounds redundant.
We also need Raw.string
anyway, so deno_std/fs/EOL
couldn't be used directly.
Fixes https://github.com/denoland/deno/issues/14012 and removes unnecessary line-ending from the processed output, as before the trimming, it always ended up looking like this:
Escaping is done using https://docs.rs/escape8259/ and verified correctness with the https://www.rfc-editor.org/rfc/rfc8259 itself. I didn't see a point vendoring such a small library, but if necessary, we can do that.