Update eslint and @typescript-eslint (denoland/deno_std#621)

Original: c3fe858f98
This commit is contained in:
Yoshiya Hinosawa 2019-10-06 01:02:34 +09:00 committed by Ryan Dahl
parent 2f90225c89
commit 96fe2d10a4
54 changed files with 204 additions and 188 deletions

View file

@ -53,11 +53,11 @@ async function main(): Promise<void> {
});
if (res.ok) {
let resObj = await res.json();
const resObj = await res.json();
console.log("Success");
console.log(resObj["html_url"]);
} else {
let err = await res.text();
const err = await res.text();
console.error("Failure to POST", err);
}
}