11 lines
207 B
Go
Raw Normal View History

2019-01-06 05:19:13 +08:00
//+build appengine
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.
}