Skip to main content
path.PlatformPath.normalize - node__path.d.ts - Node documentation
method path.PlatformPath.normalize

Usage in Deno

```typescript import { type path } from "node:node__path.d.ts"; ```
PlatformPath.normalize(path: string): string
Normalize a string path, reducing '..' and '.' parts. When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used.

Parameters

path: string
string path to normalize.

Return Type

string

Throws

TypeError
if `path` is not a string.