Is there any way to return the output of a base64 op as ASCII text vs integer values?
For example, if I do the following:
curl -XPOST -H "Content-Type: application/json" http://192.168.1.203:3000/bake -d '{"input":"dGVzdA==", "recipe":{"op":"From Base64"}}'
I get the following as the response:
[116,101,115,116]
How would I modify the request to receive test as the response?