Skip to main content
Module

x/lume_init/deps.ts>dirname

The code for the new Lume init
Go to Latest
function dirname
import { dirname } from "https://deno.land/x/lume_init@v0.1.10/deps.ts";

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