6 lines
135 B
JavaScript
6 lines
135 B
JavaScript
|
|
fetch("https://sourceforge.net").then(function (response) {
|
||
|
|
return response.text();
|
||
|
|
}).then(function (body) {
|
||
|
|
return body;
|
||
|
|
});
|