You can test if it is an instanceof Blob like this:
var MyBlob = new Blob(['test text'], {type : 'text/plain'});
document.body.innerHTML = MyBlob instanceof Blob;
This will work for things that inherit from Blob also.
You can test if it is an instanceof Blob like this:
var MyBlob = new Blob(['test text'], {type : 'text/plain'});
document.body.innerHTML = MyBlob instanceof Blob;
This will work for things that inherit from Blob also.