Does anyone know how to parse a bytes value from local state returned by the client?

64 Views Asked by At

I'm trying to parse bytes from local state returned by client.

Basically I want to convert it back to binary data.

1

There are 1 best solutions below

0
On BEST ANSWER

You can easily do it with a base 64 decoder to convert back that object to binary file/bytes.

Here's a link on how you can do it

enter image description here

If you found it useful! make sure to give this answer a Upvote :)