Skip to main content
Module

x/mtkruto/0_deps.ts>path.relative

Cross-runtime JavaScript library for building Telegram clients
Latest
function path.relative
import { path } from "https://deno.land/x/mtkruto@0.2.30/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