blob: 864d1be67638cbb53b0efbd66ec7099918465288 [file] [log] [blame]
Matthias Andreas Benkard832a54e2019-01-29 09:27:38 +01001// This file is included to the build if any of the buildtags below
2// are defined. Refer to README notes for more details.
3
4//+build easyjson_nounsafe appengine
5
6package jlexer
7
8// bytesToStr creates a string normally from []byte
9//
10// Note that this method is roughly 1.5x slower than using the 'unsafe' method.
11func bytesToStr(data []byte) string {
12 return string(data)
13}