Skip to main content
Module

x/lume/deps/path.ts>posix.dirname

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
function posix.dirname
import { posix } from "https://deno.land/x/lume@v2.1.4/deps/path.ts";
const { dirname } = posix;

Return the directory path of a path.

Examples

Example 1

import { dirname } from "https://deno.land/std@0.224.0/path/dirname.ts";

console.log(dirname("/home/user/Documents/")); // "/home/user"
console.log(dirname("/home/user/Documents/image.png")); // "/home/user/Documents"

Parameters

path: string
  • path to extract the directory from.

Returns

string