2019-01-14 15:40:04 +00:00
|
|
|
//+build appengine js
|
2018-06-21 18:09:58 +00:00
|
|
|
|
|
|
|
package gjson
|
|
|
|
|
|
|
|
func getBytes(json []byte, path string) Result {
|
|
|
|
return Get(string(json), path)
|
|
|
|
}
|
|
|
|
func fillIndex(json string, c *parseContext) {
|
|
|
|
// noop. Use zero for the Index value.
|
|
|
|
}
|
2019-02-16 21:50:53 +00:00
|
|
|
|
|
|
|
func stringBytes(s string) []byte {
|
|
|
|
return []byte(s)
|
|
|
|
}
|