// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package json import "bytes" // TODO(https://go.dev/issue/53685): Use bytes.Buffer.AvailableBuffer instead. func availableBuffer(b *bytes.Buffer) []byte { return b.Bytes()[b.Len():] } // HTMLEscape appends to dst the JSON-encoded src with <, >, &, U+2028 and U+2029 // characters inside string literals changed to \u003c, \u003e, \u0026, \u2028, \u2029 // so that the JSON will be safe to embed inside HTML