mirror of
https://github.com/encounter/JSONAPI.git
synced 2026-03-30 11:18:38 -07:00
13 lines
230 B
Swift
13 lines
230 B
Swift
//
|
|
// PrintEncoded.swift
|
|
// JSONAPITests
|
|
//
|
|
// Created by Mathew Polzin on 12/8/18.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
func print<T: Encodable>(encodable: T) {
|
|
print(String(data: try! JSONEncoder().encode(encodable), encoding: .utf8)!)
|
|
}
|