Created
October 24, 2016 18:10
-
-
Save AtharvaVaidya/8c2d73ccdb2ffc02747f9abcaafb5106 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension String | |
{ | |
init(DescribingObject: Any) | |
{ | |
self = String(describing: DescribingObject).replacingOccurrences(of: "<", with: "").replacingOccurrences(of: "<", with: "").components(separatedBy: ".").last!.components(separatedBy: ":").first! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment