diff options
Diffstat (limited to 'examples/html-rewriter.ts')
-rw-r--r-- | examples/html-rewriter.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/html-rewriter.ts b/examples/html-rewriter.ts index a2a9d03fa..877b957b7 100644 --- a/examples/html-rewriter.ts +++ b/examples/html-rewriter.ts @@ -1,4 +1,5 @@ // Start a fast HTTP server from a function + Bun.serve({ async fetch(req) { const { pathname } = new URL(req.url); @@ -9,21 +10,21 @@ Bun.serve({ "Enter a path that starts with https:// or http://\n", { status: 400, - } + }, ); } const response = await fetch( req.url.substring("http://localhost:3000/".length), - req.clone() + req.clone(), ); return new HTMLRewriter() .on("a[href]", { - element(element: Element) { + element(element) { element.setAttribute( "href", - "https://www.youtube.com/watch?v=dQw4w9WgXcQ" + "https://www.youtube.com/watch?v=dQw4w9WgXcQ", ); }, }) |