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

x/fathym_common/src/src.deps.ts>relative

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
function relative
import { relative } from "https://deno.land/x/fathym_common@v0.0.176/src/src.deps.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