JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

JavaScript

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