From 878a9a29e77bcaedd4242618ccf57d1be7dfd7d8 Mon Sep 17 00:00:00 2001 From: Axetroy Date: Thu, 12 Sep 2019 11:31:23 +0800 Subject: bump prettier to 1.18.2 (denoland/deno_std#592) Original: https://github.com/denoland/deno_std/commit/06958a4ada960665a48ac34f919423e0d8d16951 --- http/file_server.ts | 13 +++++-------- http/server_test.ts | 8 +++----- 2 files changed, 8 insertions(+), 13 deletions(-) (limited to 'http') 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("") diff --git a/http/server_test.ts b/http/server_test.ts index 4a904a6f7..692293e80 100644 --- a/http/server_test.ts +++ b/http/server_test.ts @@ -504,11 +504,9 @@ test({ let serverIsRunning = true; p.status() - .then( - (): void => { - serverIsRunning = false; - } - ) + .then((): void => { + serverIsRunning = false; + }) .catch((_): void => {}); // Ignores the error when closing the process. await delay(100); -- cgit v1.2.3