Stepan Pyzhov
Stepan Pyzhov
@aaroalan, I created a draft for V1 milestone: #42. The whole project will be rewritten.
@ryzheboka, sure! Please create 2 new methods with names `base64_encode` and `base64_decode`. You can implement them in the same way as function `avg` (source: https://github.com/spyzhov/ajson/blob/master/math.go#L363-L380). Input and Output type should...
The first suggestion was right, it should be something like this: ```golang "base64_encode": func(node *Node) (result *Node, err error) { if node.IsString() { if res, err := node.GetString(); err !=...
Also, please be aware that `base64` can be configured with/without padding: ```golang _, _ = base64.StdEncoding.WithPadding(base64.NoPadding).DecodeString(str) _, _ = base64.StdEncoding.WithPadding(base64.StdPadding).DecodeString(str) ``` Some strings can not be decoded with/without padding. Probably...
It's OK, when I'll press a button to run it "from my name", it will resolve this problem.
Sorry for the late update. Fixed.
Strange, in `README.md` there is a link with a badge for `https://goreportcard.com/report/github.com/spyzhov/chttp`
Thanks for sharing! Will check the fork and try to migrate it to the library. Also, be aware that I just closed bug #61, please do not forget to update...
@rohit-nayak-ps, I saw you'd created a new branch https://github.com/spyzhov/ajson/compare/master...rohit-nayak-ps:ajson:vitess-integer-types will you prepare a PR for those changes? I can fix most of the underlying dependencies (in the math mostly) to...
Hello, yes, it can be shared, but only for "not dirty" nodes which were not updated.