Skip to content

Instantly share code, notes, and snippets.

@outadoc
outadoc / GottaGoFastJS.swift
Last active May 14, 2016 09:10 — forked from b3ll/GottaGoFastJS.swift
Blazingly-Fast JSON Parser written in Swift
import Foundation
public typealias JSON = AnyObject
public func JSONWithData(data: NSData) throws -> JSON? {
return NSJSONSerialization.JSONObjectWithData(data, options: [])
}