Skip to main content
This release is 12 versions behind 1.0.15 — the latest version of @std/fs. Jump to latest

@std/fs@1.0.3
Built and signed on GitHub Actions

Helpers for working with the file system

This package works with Deno
This package works with Deno
JSR Score
94%
Published
7 months ago (1.0.3)
Package root>_is_same_path.ts
// 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); }