Skip to content

Instantly share code, notes, and snippets.

@AtharvaVaidya
Created October 24, 2016 18:10
Show Gist options
  • Save AtharvaVaidya/8c2d73ccdb2ffc02747f9abcaafb5106 to your computer and use it in GitHub Desktop.
Save AtharvaVaidya/8c2d73ccdb2ffc02747f9abcaafb5106 to your computer and use it in GitHub Desktop.
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