1
2
3
4
export let kyExample = (async () => {
const { default: ky } = await import("npm:ky");
return ky("https://macwright.com/").text();
})();