(c byte)
| 252 | } |
| 253 | |
| 254 | func isAlphaNum(c byte) bool { |
| 255 | return (c >= 'a' && c <= 'z') || |
| 256 | (c >= 'A' && c <= 'Z') || |
| 257 | (c >= '0' && c <= '9') |
| 258 | } |
| 259 | |
| 260 | // Export exports an existing namespace into an opaque data stream |
| 261 | // This stream is actually a tarball containing context metadata and TLS materials, but it does |
no outgoing calls
no test coverage detected
searching dependent graphs…