blob: 41e8317ac225c8cdee7d3dd1b46c47ecb41eba77 (
plain)
1
2
3
4
5
6
7
8
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
"use strict";
var b = new Blob(['123'], { type: 'foo/bar'});
console.log({ msg: 'consoleAndBlobs', blob: b });
|