update dependency

This commit is contained in:
Wiley Wang
2018-09-17 03:20:28 +00:00
parent 2e6bf0f566
commit db08431ac1
99 changed files with 15839 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
// This file is included to the build if any of the buildtags below
// are defined. Refer to README notes for more details.
//+build easyjson_nounsafe appengine
package jlexer
// bytesToStr creates a string normally from []byte
//
// Note that this method is roughly 1.5x slower than using the 'unsafe' method.
func bytesToStr(data []byte) string {
return string(data)
}