This release is 12 versions behind 1.0.15 — the latest version of @std/fs. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Helpers for working with the file system
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Copyright the Browserify authors. MIT License. import { resolve } from "jsr:@std/path@^1.0.4/resolve"; import { toPathString } from "./_to_path_string.ts"; /** * 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: string | URL, dest: string | URL, ): boolean { src = toPathString(src); dest = toPathString(dest); return resolve(src) === resolve(dest); }