JSFiddle - React, Tailwind, and code Playground
by Abhilash1994
JavaScript
let blob = new Blob(['Hello, world!'], {type: 'text/plain'});
var url = URL.createObjectURL(blob);
window.open(url);
URL.revokeObjectURL(url);
by Abhilash1994
let blob = new Blob(['Hello, world!'], {type: 'text/plain'});
var url = URL.createObjectURL(blob);
window.open(url);
URL.revokeObjectURL(url);