6 lines
100 B
Swift
6 lines
100 B
Swift
extension String {
|
|
func has(prefix aPrefix: String) -> Bool {
|
|
return hasPrefix(aPrefix)
|
|
}
|
|
}
|