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

x/vento/deps.ts>path.relative

🌬 A template engine for Deno & Node
Very Popular
Go to Latest
function path.relative
import { path } from "https://deno.land/x/vento@v0.11.0/deps.ts";
const { relative } = path;

Return the relative path from from to to based on current working directory.

An example in windws, for instance: from = 'C:\orandea\test\aaa' to = 'C:\orandea\impl\bbb' The output of the function should be: '..\..\impl\bbb'

Parameters

from: string

path in current working directory

to: string

path in current working directory

Returns

string