blob: e95a87fb8310ccaecda2e3dc9b3516985f668299 (
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 });
|