Как вариант
<script id="someScript" type="text/javascript" charset="UTF-8" src="http:какая-то ссылка"></script>
var scriptString = null;
fetch(document.getElementById('someScript').src).then(function(res) {
return res.text();
}).then(function(res) {
scriptString = res;
});