Skip to content

Instantly share code, notes, and snippets.

@tvaisanen
Created December 26, 2020 17:12
Show Gist options
  • Select an option

  • Save tvaisanen/51720c699057e6ab5c0ee26a2ff9e3fb to your computer and use it in GitHub Desktop.

Select an option

Save tvaisanen/51720c699057e6ab5c0ee26a2ff9e3fb to your computer and use it in GitHub Desktop.
(defn stream-bytes
"Input stream to bytes. i.e. (-> file io/input-stream stream-bytes)"
[is]
(let [baos (java.io.ByteArrayOutputStream.)]
(io/copy is baos)
(.toByteArray baos)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment