This release is 4 versions behind 1.0.8 — the latest version of @std/path. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Utilities for working with file system paths
This package works with Cloudflare Workers, Deno, Browsers


JSR Score
94%
Published
7 months ago (1.0.4)
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. import { isWindows } from "./_os.ts"; import { basename as posixBasename } from "./posix/basename.ts"; import { basename as windowsBasename } from "./windows/basename.ts"; /** * Return the last portion of a path. * * The trailing directory separators are ignored, and optional suffix is * removed. * * @example Usage * ```ts * import { basename } from "@std/path/basename"; * import { assertEquals } from "@std/assert"; * * if (Deno.build.os === "windows") { * assertEquals(basename("C:\\user\\Documents\\image.png"), "image.png"); * } else { * assertEquals(basename("/home/user/Documents/image.png"), "image.png"); * } * ``` * * @param path Path to extract the name from. * @param suffix Suffix to remove from extracted name. * * @returns The basename of the path. */ export function basename(path: string, suffix?: string): string; /** * Return the last portion of a path. * * @experimental **UNSTABLE**: New API, yet to be vetted. * * The trailing directory separators are ignored, and optional suffix is * removed. * * @example Usage * ```ts * import { basename } from "@std/path/basename"; * import { assertEquals } from "@std/assert"; * * if (Deno.build.os === "windows") { * assertEquals(basename("C:\\user\\Documents\\image.png"), "image.png"); * assertEquals(basename(new URL("file:///C:/user/Documents/image.png")), "image.png"); * } else { * assertEquals(basename("/home/user/Documents/image.png"), "image.png"); * assertEquals(basename(new URL("file:///home/user/Documents/image.png")), "image.png"); * } * ``` * * @param path Path to extract the name from. * @param suffix Suffix to remove from extracted name. * * @returns The basename of the path. */ export function basename(path: string | URL, suffix?: string): string; export function basename(path: string | URL, suffix = ""): string { return isWindows ? windowsBasename(path, suffix) : posixBasename(path, suffix); }