Skip to main content
This release is 4 versions behind 1.0.8 — the latest version of @std/path. Jump to latest

@std/path@1.0.4
Built and signed on GitHub Actions

Utilities for working with file system paths

This package works with Cloudflare Workers, Deno, Browsers
This package works with Cloudflare Workers
This package works with Deno
This package works with Browsers
JSR Score
94%
Published
7 months ago (1.0.4)
Package root>basename.ts
// 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); }