mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-09-14 18:01:58 +00:00
10 lines
238 B
Swift
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
|
|
}
|
|
}
|