I have a Blob object I want to inspect by logging its value. All I can see are type and size properties. Is there a way to do this?
type
size
Updated for 2023, this can now be done with
await blob.text()
(Thanks @Kaiido)