mirror of https://github.com/tidwall/gjson.git
added gjson-safe comment
This commit is contained in:
parent
e3f249f4fd
commit
09d1c5c5bc
|
@ -13,8 +13,6 @@
|
||||||
|
|
||||||
GJSON is a Go package that provides a [very fast](#performance) and simple way to get a value from a json document. The purpose for this library it to give efficient json indexing for the [BuntDB](https://github.com/tidwall/buntdb) project.
|
GJSON is a Go package that provides a [very fast](#performance) and simple way to get a value from a json document. The purpose for this library it to give efficient json indexing for the [BuntDB](https://github.com/tidwall/buntdb) project.
|
||||||
|
|
||||||
For a command line interface check out [JSONed](https://github.com/tidwall/jsoned).
|
|
||||||
|
|
||||||
Getting Started
|
Getting Started
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
4
gjson.go
4
gjson.go
|
@ -4,6 +4,10 @@ package gjson
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
// It's totally safe to use this package, but in case your
|
||||||
|
// project or organization restricts the use of 'unsafe',
|
||||||
|
// there's the "github.com/tidwall/gjson-safe" package.
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
"github.com/tidwall/match"
|
"github.com/tidwall/match"
|
||||||
|
|
Loading…
Reference in New Issue