Module

x/nessie/deps.ts>relative

A modular Deno library for PostgreSQL, MySQL, MariaDB and SQLite migrations
Latest
function relative
import { relative } from "https://dotland.deno.dev/x/nessie@2.0.11/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