Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/netzo/deps/std/path/mod.ts>relative

Deno-powered framework for building business web apps
Go to Latest
function relative
import { relative } from "https://deno.land/x/netzo@0.3.91/deps/std/path/mod.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