Skip to content

Instantly share code, notes, and snippets.

View traviskirton's full-sized avatar

Travis traviskirton

View GitHub Profile
@taywils
taywils / JsonMinify.swift
Created October 17, 2016 04:07
Swift JSON Minify
import Foundation
extension String {
public var JSONminify: String {
// http://stackoverflow.com/questions/8913138/
// https://developer.apple.com/reference/foundation/nsregularexpression#//apple_ref/doc/uid/TP40009708-CH1-SW46
let minifyRegex = "(\"(?:[^\"\\\\]|\\\\.)*\")|\\s+"
if let regexMinify = try? NSRegularExpression(pattern: minifyRegex, options: .caseInsensitive) {