summaryrefslogtreecommitdiff
path: root/std/media_types/deps.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-04-03 12:11:52 -0400
committerGitHub <noreply@github.com>2020-04-03 12:11:52 -0400
commit13db64fbc6a8da68e5f6c1da59e058a1a3146054 (patch)
treeb8f91e48196ed3c230162da8972f0560d3420050 /std/media_types/deps.ts
parente99374a0a304bc3bd11ee55274fb7f4bcf902da6 (diff)
Remove /std/media_types (#4594)
Diffstat (limited to 'std/media_types/deps.ts')
-rw-r--r--std/media_types/deps.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/std/media_types/deps.ts b/std/media_types/deps.ts
deleted file mode 100644
index b09c25817..000000000
--- a/std/media_types/deps.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-export { extname } from "../path/mod.ts";
-
-interface DB {
- [mediaType: string]: {
- source?: string;
- compressible?: boolean;
- charset?: string;
- extensions?: string[];
- };
-}
-
-import _db from "./db.json";
-export const db: DB = _db;