For:
const someblob = new Blob(['foo', 'bar'],{type : 'text/plain'})
I am getting:
ReferenceError: Blob is not defined
Is this expected behaviour?
For:
const someblob = new Blob(['foo', 'bar'],{type : 'text/plain'})
I am getting:
ReferenceError: Blob is not defined
Is this expected behaviour?
Yes, Blob (and File) are not yet implemented.
Was wondering if implementing Blob()
is planned - just encountered a βthe method is not implemented.β myself