import { pathUtils } from "https://deno.land/x/dtils@2.4.0/deps.ts";
const { relative } = pathUtils;
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'