Skip to main content
Module

x/lume/deps/path.ts>relative

🔥 Static site generator for Deno 🦕
Very Popular
Latest
function relative
import { relative } from "https://deno.land/x/lume@v2.1.4/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