mirror of
https://github.com/denoland/deno.git
synced 2025-07-29 16:13:54 +00:00
Update eslint and @typescript-eslint (denoland/deno_std#621)
Original: c3fe858f98
This commit is contained in:
parent
2f90225c89
commit
96fe2d10a4
54 changed files with 204 additions and 188 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue