splash/Sources/Splash/Extensions/Strings/String+Removing.swift

14 lines
256 B
Swift
Raw Permalink Normal View History

2018-08-24 18:42:07 +02:00
/**
* Splash
* Copyright (c) John Sundell 2018
* MIT license - see LICENSE.md
*/
import Foundation
internal extension String {
func removing(_ substring: String) -> String {
return replacingOccurrences(of: substring, with: "")
}
}