Jan 15
API: fetch add message parameter
Add an optional message parameter
message: optional message instead of displaying URL
function test() {
fetch("https://noteplan.co", { timeout: 1000, message: 'Fetching NotePlan Site' })
.then(n => console.log(n))
.catch(error => console.log("error: " + error))
}
Pending