package jx

// StrEscape encodes string with html special characters escaping.
func ( *Encoder) ( string) bool {
	return .comma() ||
		.w.StrEscape()
}

// ByteStrEscape encodes string with html special characters escaping.
func ( *Encoder) ( []byte) bool {
	return .comma() ||
		.w.ByteStrEscape()
}