gjson/gjson_gae.go

11 lines
210 B
Go
Raw Normal View History

2019-01-14 18:40:04 +03:00
//+build appengine js
2018-06-21 21:09:58 +03: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.
}