Skip to content

Instantly share code, notes, and snippets.

@sergiosette
Created October 17, 2017 19:49
Show Gist options
  • Save sergiosette/4489ac768e70e634f34aec2f356cc697 to your computer and use it in GitHub Desktop.
Save sergiosette/4489ac768e70e634f34aec2f356cc697 to your computer and use it in GitHub Desktop.
func parse(_ json: String) -> Any? {
return Bool(json) ?? Int(json) ?? Double(json) ?? ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment