UNPKG

keep-a-changelog

Version:

Node package to parse and generate changelogs following the [keepachangelog](https://keepachangelog.com/) format.

10 lines (9 loc) 283 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. import { assertPath } from "./assert_path.js"; export function assertArgs(from, to) { assertPath(from); assertPath(to); if (from === to) return ""; }