I want to get the url of a blob, and I'm doing the following:
(.. js/window -URL createObjectURL blob)
to mimic the JS
window.URL.createObjectURL(blob)
But I get the following error:
TypeError: Not enough arguments (at createObjectURL)
What am I doing wrong?
Your use is incorrect. Needs an extra pair of parens so
blobbecomes an actual argument and not the "next" step.