Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/proc/src/deps/path.ts>basename

A better way to work with processes in Deno.
Go to Latest
function basename
import { basename } from "https://deno.land/x/proc@0.20.37/src/deps/path.ts";

Return the last portion of a path. Trailing directory separators are ignored, and optional suffix is removed.

Parameters

path: string
  • path to extract the name from.
optional
suffix = [UNSUPPORTED]
  • suffix to remove from extracted name.

Returns

string