9 lines
330 B
Swift
9 lines
330 B
Swift
extension String {
|
|
/// A representation of an empty string.
|
|
static let empty = ""
|
|
/// A representation of a string containing solely a forwarding slash.
|
|
static let forwardSlash = "/"
|
|
/// A representation of a string that identifies a previous folder in a path component.
|
|
static let previousFolder = ".."
|
|
}
|