fix #782 (bring vendor into the main tree)

This commit is contained in:
Shivaram Lingamneni
2020-02-12 13:19:23 -05:00
parent 702c7b1e7c
commit d0aa7cc860
616 changed files with 359667 additions and 31 deletions

18
vendor/github.com/tidwall/gjson/gjson_gae.go generated vendored Normal file
View File

@@ -0,0 +1,18 @@
//+build appengine js
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.
}
func stringBytes(s string) []byte {
return []byte(s)
}
func bytesString(b []byte) string {
return string(b)
}