Skip to content

Instantly share code, notes, and snippets.

@jdoliner
Created December 1, 2018 00:58
Show Gist options
  • Save jdoliner/777b223e08f4daa4bb69952a6072037d to your computer and use it in GitHub Desktop.
Save jdoliner/777b223e08f4daa4bb69952a6072037d to your computer and use it in GitHub Desktop.
func NewReadCloser(r io.Reader) ReadCloser {
if rc, ok := r.(io.ReadCloser) {
return ReadCloser{rc}
} else {
return NopReadCloser{r}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment