doxy/Library/Sources/Internal/Extensions/String+Constants.swift

9 lines
330 B
Swift
Raw Normal View History

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 = ".."
}