@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
18 lines (17 loc) • 581 B
JavaScript
// Copyright 2018-2025 the Deno authors. MIT license.
// Copyright the Browserify authors. MIT License.
import { resolve } from "../../path/1.0.8/resolve.js";
import { toPathString } from "./_to_path_string.js";
/**
* Checks if two paths are the same.
*
* @param src Source file path as a string or URL.
* @param dest Destination file path as a string or URL.
*
* @returns `true` if the paths are the same, `false` otherwise.
*/
export function isSamePath(src, dest) {
src = toPathString(src);
dest = toPathString(dest);
return resolve(src) === resolve(dest);
}