blob: 864d1be67638cbb53b0efbd66ec7099918465288 [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// 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}