Skip to content

Instantly share code, notes, and snippets.

@kgn
Created March 15, 2016 05:42
Show Gist options
  • Save kgn/9994ff4f3dcca3778bd9 to your computer and use it in GitHub Desktop.
Save kgn/9994ff4f3dcca3778bd9 to your computer and use it in GitHub Desktop.
extension JSONMagic: CustomStringConvertible {
public var description: String {
if self.value == nil {
return "<No Value>"
}
return "\(self.value!)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment