splash/Sources/Splash/Extensions/Strings/String+Removing.swift
2018-08-24 18:42:07 +02:00

14 lines
256 B
Swift

/**
* 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: "")
}
}