mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 20:59:10 +00:00
Use dprint for internal formatting (#6682)
This commit is contained in:
parent
9eca71caa1
commit
cde4dbb351
378 changed files with 3116 additions and 3121 deletions
|
|
@ -126,7 +126,7 @@ for (const [standard, tests] of Object.entries(testCasesNoDelimeter)) {
|
|||
encode(utf8encoder.encode(bin), {
|
||||
standard: standard as Ascii85Standard,
|
||||
}),
|
||||
b85
|
||||
b85,
|
||||
);
|
||||
}
|
||||
},
|
||||
|
|
@ -138,7 +138,7 @@ for (const [standard, tests] of Object.entries(testCasesNoDelimeter)) {
|
|||
for (const [bin, b85] of tests) {
|
||||
assertEquals(
|
||||
decode(b85, { standard: standard as Ascii85Standard }),
|
||||
utf8encoder.encode(bin)
|
||||
utf8encoder.encode(bin),
|
||||
);
|
||||
}
|
||||
},
|
||||
|
|
@ -155,7 +155,7 @@ for (const [standard, tests] of Object.entries(testCasesDelimeter)) {
|
|||
standard: standard as Ascii85Standard,
|
||||
delimiter: true,
|
||||
}),
|
||||
b85
|
||||
b85,
|
||||
);
|
||||
}
|
||||
},
|
||||
|
|
@ -170,7 +170,7 @@ for (const [standard, tests] of Object.entries(testCasesDelimeter)) {
|
|||
standard: standard as Ascii85Standard,
|
||||
delimiter: true,
|
||||
}),
|
||||
utf8encoder.encode(bin)
|
||||
utf8encoder.encode(bin),
|
||||
);
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue