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

std/path/posix/mod.ts>normalize

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function normalize
Re-export
import { normalize } from "https://deno.land/std@0.223.0/path/posix/mod.ts";

Normalize the path, resolving '..' and '.' segments. Note that resolving these segments does not necessarily mean that all will be eliminated. A '..' at the top-level will be preserved, and an empty path is canonically '.'.

Parameters

path: string

to be normalized

Returns

string