13 lines
196 B
Swift
13 lines
196 B
Swift
import Foundation
|
|
|
|
extension String {
|
|
|
|
var trimmed: String {
|
|
trimmingCharacters(in: .whitespacesAndNewlines)
|
|
}
|
|
|
|
var nonEmpty: String? {
|
|
self == "" ? nil : self
|
|
}
|
|
}
|