Skip to main content
Module

std/path/win32.ts>relative

Deno standard library
Go to Latest
function relative
import { relative } from "https://deno.land/std@0.84.0/path/win32.ts";

It will solve the relative path from from to to, for instance: from = 'C:\orandea\test\aaa' to = 'C:\orandea\impl\bbb' The output of the function should be: '..\..\impl\bbb'

Parameters

from: string

relative path

to: string

relative path

Returns

string