summaryrefslogtreecommitdiff
path: root/http.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-11-07 14:17:36 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-11-07 14:17:36 -0500
commit280856f8d81c4b2e53fa8022aafae5a7c008747f (patch)
tree07dd6f1acd98046c076a767b5105f91ea13d6d25 /http.ts
parent8610e3578c923be2b7d758e75ea370801abf8574 (diff)
First pass at bufio.read tests.
Original: https://github.com/denoland/deno_std/commit/1eb57aa3948caf88e9064defc15e076b8a46fbd2
Diffstat (limited to 'http.ts')
-rw-r--r--http.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/http.ts b/http.ts
index c8b7d8d90..4c209153a 100644
--- a/http.ts
+++ b/http.ts
@@ -55,12 +55,12 @@ function readRequest(b: bufio.Reader): ServerRequest {
// First line: GET /index.html HTTP/1.0
const s = await tp.readLine();
- const [ method, url, proto ] = parseRequestLine(s);
+ const [method, url, proto] = parseRequestLine(s);
console.log("readRequest", method, url);
}
// Returns [method, url, proto]
-function parseRequestLine(line: string): [ string, string, string ] {
+function parseRequestLine(line: string): [string, string, string] {
return line.split(" ", 3);
}
@@ -69,4 +69,3 @@ export function listen(addr: string): Server {
const s = new Server(listener);
return s;
}
-