github.com/cockroachdb/cockroachdb-parser@v0.23.3-0.20240213214944-911057d40c9a/pkg/util/json/tokenizer/README_crdb.md (about)

     1  # CRDB fork of pkg/json [![GoDoc](https://godoc.org/github.com/pkg/json?status.svg)](https://godoc.org/github.com/pkg/json)
     2  
     3  These files are a fork of `pkg/json` package.
     4  - `scanner.go`, `decoder.go`, and `reader.go` were copied from pkg/json
     5  - Additional utility methods added (e.g. to reset decoder)
     6  - Ability to query reader position, etc.
     7  - Package name renamed from `json` to `tokenizer`
     8  - Removal of unused functions
     9  - Probably, the largest change from the original is in the `scanner.go`.
    10    Changes were made to support un-escaping escaped characters, including
    11    unicode characters.