21 lines
427 B
Swift
21 lines
427 B
Swift
//
|
|
// Copyright © 2018 WireGuard LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension String {
|
|
|
|
static func commaSeparatedStringFrom(elements: [String]) -> String {
|
|
return elements.joined(separator: ",")
|
|
}
|
|
|
|
func commaSeparatedToArray() -> [String] {
|
|
return components(separatedBy: .whitespaces)
|
|
.joined()
|
|
.split(separator: ",")
|
|
.map(String.init)
|
|
}
|
|
|
|
}
|