UNPKG

keep-a-changelog

Version:

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

13 lines (12 loc) 437 B
"use strict"; // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. Object.defineProperty(exports, "__esModule", { value: true }); exports.assertArgs = assertArgs; const assert_path_js_1 = require("./assert_path.js"); function assertArgs(from, to) { (0, assert_path_js_1.assertPath)(from); (0, assert_path_js_1.assertPath)(to); if (from === to) return ""; }