-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.ts
48 lines (40 loc) · 927 Bytes
/
functions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { cwd, serveFile, ServerRequest } from "../deps.ts";
function getPathQuery(path: string) {
return path.split("?");
}
function removePathQuery(path: string) {
const [modulePath] = getPathQuery(path);
return modulePath;
}
function removeLeadingSlash(path: string) {
if (path.startsWith("/")) {
return path.slice(1);
}
return path;
}
function removeTrailingSlash(path: string) {
if (path.endsWith("/")) {
return path.slice(-1);
}
return path;
}
function removeSlashes(path: string) {
return removeTrailingSlash(removeLeadingSlash(path));
}
async function serveStatic(request: ServerRequest) {
try {
const { url } = request;
const path = `${cwd()}/public${url}`;
return serveFile(request, path);
} catch (error) {
throw new Error(error);
}
}
export {
getPathQuery,
removeLeadingSlash,
removePathQuery,
removeSlashes,
removeTrailingSlash,
serveStatic,
};