This:
try { return fetch(url, {method: 'get'}) .then(response => response.json()) .catch(err => console.log(".catch err: " + err)); } catch (err) { console.log("try .catch err: " + err) }
Still results in this;