import { basename } from "https://deno.land/x/fastro@v0.88.1/http/server/deps.ts";
Return the last portion of a path
.
Trailing directory separators are ignored, and optional suffix is removed.
Examples
Example 1
Example 1
import { basename } from "https://deno.land/std@0.224.0/path/basename.ts";
basename("/home/user/Documents/"); // "Documents"
basename("C:\\user\\Documents\\image.png"); // "image.png"
basename("/home/user/Documents/image.png", ".png"); // "image"