Files
ghostty/macos/Sources/Helpers/Extensions/URL+Extension.swift
2026-08-27 14:58:06 -07:00

10 lines
238 B
Swift

import Foundation
import System
extension URL {
/// The decoded path with trailing separators removed, except for the root path.
var pathWithoutTrailingSlash: String {
FilePath(path(percentEncoded: false)).string
}
}