diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-04-03 12:11:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 12:11:52 -0400 |
commit | 13db64fbc6a8da68e5f6c1da59e058a1a3146054 (patch) | |
tree | b8f91e48196ed3c230162da8972f0560d3420050 /std/media_types/deps.ts | |
parent | e99374a0a304bc3bd11ee55274fb7f4bcf902da6 (diff) |
Remove /std/media_types (#4594)
Diffstat (limited to 'std/media_types/deps.ts')
-rw-r--r-- | std/media_types/deps.ts | 15 |
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; |