UNPKG

abi.js

Version:

[![typescript-icon]][typescript-link] [![license-icon]][license-link] [![status-icon]][status-link] [![ci-icon]][ci-link] [![twitter-icon]][twitter-link]

24 lines (23 loc) 752 B
/** * Return the relative path from `from` to `to` based on current working * directory. * * @example Usage * ```ts * import { relative } from "@std/path/relative"; * import { assertEquals } from "@std/assert"; * * if (Deno.build.os === "windows") { * const path = relative("C:\\foobar\\test\\aaa", "C:\\foobar\\impl\\bbb"); * assertEquals(path, "..\\..\\impl\\bbb"); * } else { * const path = relative("/data/foobar/test/aaa", "/data/foobar/impl/bbb"); * assertEquals(path, "../../impl/bbb"); * } * ``` * * @param from Path in current working directory. * @param to Path in current working directory. * @returns The relative path from `from` to `to`. */ export declare function relative(from: string, to: string): string;