-
-
Save outadoc/eda580af102c1777a86f2e5f82b4b360 to your computer and use it in GitHub Desktop.
Blazingly-Fast JSON Parser written in Swift
This file contains 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 | |
public typealias JSON = AnyObject | |
public func JSONWithData(data: NSData) throws -> JSON? { | |
return NSJSONSerialization.JSONObjectWithData(data, options: []) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment