Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/dax/src/deps.ts>path.relative

Cross platform shell tools for Deno inspired by zx.
Extremely Popular
Go to Latest
function path.relative
import { path } from "https://deno.land/x/dax@0.38.0/src/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