Files
Kmake/test/fixtures/fetch-and-log.mjs
2026-05-26 23:36:42 -07:00

4 lines
108 B
JavaScript

const response = await fetch(process.env.FETCH_URL);
const body = await response.text();
console.log(body);