summaryrefslogtreecommitdiff
path: root/http/file_server.ts
diff options
context:
space:
mode:
authorAxetroy <axetroy.dev@gmail.com>2019-09-12 11:31:23 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-09-11 23:31:23 -0400
commit878a9a29e77bcaedd4242618ccf57d1be7dfd7d8 (patch)
tree53fd448fa9cf0295c2498f4f7970f1a720435dcc /http/file_server.ts
parent08087e921ede553d1eaeb682d264c3d4c217a3cd (diff)
bump prettier to 1.18.2 (denoland/deno_std#592)
Original: https://github.com/denoland/deno_std/commit/06958a4ada960665a48ac34f919423e0d8d16951
Diffstat (limited to 'http/file_server.ts')
-rwxr-xr-xhttp/file_server.ts13
1 files changed, 5 insertions, 8 deletions
diff --git a/http/file_server.ts b/http/file_server.ts
index 6fc2d15a7..dfcd40cdd 100755
--- a/http/file_server.ts
+++ b/http/file_server.ts
@@ -75,11 +75,9 @@ function modeToString(isDir: boolean, maybeMode: number | null): string {
.split("")
.reverse()
.slice(0, 3)
- .forEach(
- (v): void => {
- output = modeMap[+v] + output;
- }
- );
+ .forEach((v): void => {
+ output = modeMap[+v] + output;
+ });
output = `(${isDir ? "d" : "-"}${output})`;
return output;
}
@@ -179,9 +177,8 @@ async function serveDir(
dirViewerTemplate.replace("<%DIRNAME%>", formattedDirUrl).replace(
"<%CONTENTS%>",
listEntry
- .sort(
- (a, b): number =>
- a.name.toLowerCase() > b.name.toLowerCase() ? 1 : -1
+ .sort((a, b): number =>
+ a.name.toLowerCase() > b.name.toLowerCase() ? 1 : -1
)
.map((v): string => v.template)
.join("")