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

9 lines
224 B
Swift

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