RosettaCodeData/Task/HTTPS/JavaScript/https-1.js

6 lines
135 B
JavaScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fetch("https://sourceforge.net").then(function (response) {
return response.text();
}).then(function (body) {
return body;
});