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

x/proc/tools/deps/path.ts>relative

A better way to work with processes in Deno.
Go to Latest
function relative
import { relative } from "https://deno.land/x/proc@0.21.4/tools/deps/path.ts";

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