JSFiddle - React, Tailwind, and code Playground

by pdfjs

JavaScript

async function test() {
  const res = await fetch('https://jsfiddle.net/');
  const text = await res.text();
  return text;
}

test().then(alert)