deno.land / std@0.224.0 / media_types / extension_test.ts
1234567891011121314151617181920// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../assert/mod.ts";import { extension } from "./mod.ts";
Deno.test({ name: "extension()", fn() { const fixtures: [string, string | undefined][] = [ ["image/gif", "gif"], ["application/javascript", "js"], ["text/html; charset=UTF-8", "html"], ["application/foo", undefined], ]; for (const [fixture, expected] of fixtures) { assertEquals(extension(fixture), expected); } },});
Version Info