IdentityMaybeEscape Quote an identity/literal if need be (has illegal characters or spaces)
(buf *bytes.Buffer, quote byte, ident string)
| 82 | // IdentityMaybeEscape Quote an identity/literal |
| 83 | // if need be (has illegal characters or spaces) |
| 84 | func IdentityMaybeEscapeBuf(buf *bytes.Buffer, quote byte, ident string) { |
| 85 | IdentityMaybeQuoteStrictBuf(buf, quote, ident) |
| 86 | } |
| 87 | |
| 88 | // IdentityMaybeQuoteStrict Quote an identity if need be (has illegal characters or spaces) |
| 89 | // First character MUST be alpha (not numeric or any other character) |
no test coverage detected