dkegel-fastly
dkegel-fastly
I'm using ``` buf, err := ffjson.Marshal(&item) ``` and < is getting escaped in serialized values. I'd like to disable that, and this pull request looks apropos, but it doesn't...
Doesn't that lose the speed advantage of ffjson.Marshal()...?
(I wonder if a generation-time flag might be a good idea... then you wouldn't have to thread that option through as much, the generated code would just have true or...
https://github.com/pquerna/ffjson/issues/260 makes it a little hard to play around with this...
I'm testing the change locally. To use my changed copy, I had to add this to go.mod in the app using ffjson: ``` replace github.com/pquerna/ffjson => /Users/dkegel/go/src/github.com/pquerna/ffjson ``` And it...
Here's a demo of what I'm trying to do. Not quite happy yet... ``` package main import ( "fmt" "regexp" ) func main() { input := "aaa aaa" // Porting...
Thanks. I updated the problem description to address your last suggestion about induced matches. I'm not worried about the inefficiency of using string for the moment. I am very interested...
Would love to see this land!
It's closed now.
This is not unexpected. Perhaps the warning about reflect in https://tinygo.org/docs/reference/lang-support/ should be stronger. It is hard to predict when tinygo's reflect will support maps better. https://github.com/tinygo-org/tinygo/pull/2640 might be a...