keep-a-changelog
Version:
Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.
46 lines (45 loc) • 1.55 kB
JavaScript
;
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
Object.defineProperty(exports, "__esModule", { value: true });
exports.join = join;
const assert_path_js_1 = require("../_common/assert_path.js");
const normalize_js_1 = require("./normalize.js");
/**
* Join all given a sequence of `paths`,then normalizes the resulting path.
*
* @example Usage
* ```ts
* import { join } from "@std/path/posix/join";
* import { assertEquals } from "@std/assert";
*
* const path = join("/foo", "bar", "baz/asdf", "quux", "..");
* assertEquals(path, "/foo/bar/baz/asdf");
* ```
*
* @example Working with URLs
* ```ts
* import { join } from "@std/path/posix/join";
* import { assertEquals } from "@std/assert";
*
* const url = new URL("https://deno.land");
* url.pathname = join("std", "path", "mod.ts");
* assertEquals(url.href, "https://deno.land/std/path/mod.ts");
*
* url.pathname = join("//std", "path/", "/mod.ts");
* assertEquals(url.href, "https://deno.land/std/path/mod.ts");
* ```
*
* Note: If you are working with file URLs,
* use the new version of `join` from `@std/path/posix/unstable-join`.
*
* @param paths The paths to join.
* @returns The joined path.
*/
function join(...paths) {
if (paths.length === 0)
return ".";
paths.forEach((path) => (0, assert_path_js_1.assertPath)(path));
const joined = paths.filter((path) => path.length > 0).join("/");
return joined === "" ? "." : (0, normalize_js_1.normalize)(joined);
}