mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
Update @typescript-eslint/* to v2.1.0 (#2878)
This commit is contained in:
parent
a205e8a3c2
commit
f12acdb50b
31 changed files with 100 additions and 83 deletions
|
@ -24,8 +24,8 @@ test(function atobWithAsciiWhitespace(): void {
|
|||
d29ybGQ=`
|
||||
];
|
||||
|
||||
for (let encoded of encodedList) {
|
||||
let decoded = atob(encoded);
|
||||
for (const encoded of encodedList) {
|
||||
const decoded = atob(encoded);
|
||||
assertEquals(decoded, "hello world");
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue