JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

JavaScript

const blob = new Blob(["console.log('hi from module');"], { type: "text/javascript" });
const url = URL.createObjectURL(blob);
console.log(url);

async run() {
	const module = await import(url);
}

run();