Raw returns the unsanitized content. It is the explicit, greppable opt-out for non-terminal uses (hashing, writing to disk, piping). Never pass the result to a terminal writer.
()
| 47 | // for non-terminal uses (hashing, writing to disk, piping). Never pass the |
| 48 | // result to a terminal writer. |
| 49 | func (u Untrusted) Raw() string { |
| 50 | return u.raw |
| 51 | } |
| 52 | |
| 53 | // Empty reports whether the content is empty, for callers that branch on |
| 54 | // presence without needing the bytes. |
no outgoing calls