deno.land / std@0.224.0 / url / extname.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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { extname as posixExtname } from "../path/posix/extname.ts";import { strip } from "./_strip.ts";
/** * Returns the file extension of a given URL or string with leading period. * * The extension is sourced from the path portion of the URL. If there is no * extension, an empty string is returned. * * @param url The URL from which to extract the extension. * @returns The extension of the URL. * * @example Basic usage * ```ts * import { extname } from "https://deno.land/std@$STD_VERSION/url/extname.ts"; * * extname("https://deno.land/std/path/mod.ts"); // ".ts" * * extname("https://deno.land/std/path/mod"); // "" * * extname("https://deno.land/std/path/mod.ts?a=b"); // ".ts" * * extname("https://deno.land/"); // "" * ``` */export function extname(url: string | URL): string { url = new URL(url); strip(url); return posixExtname(url.pathname);}
std

Version Info

Tagged at
3 weeks ago