summaryrefslogtreecommitdiff
path: root/std/media_types/deps.ts
diff options
context:
space:
mode:
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;