23 lines
410 B
Swift
23 lines
410 B
Swift
//
|
|
// JSONDecoder+Constants.swift
|
|
// ReviewsiTunesKit
|
|
//
|
|
// Created by Javier Cicchelli on 17/03/2024.
|
|
// Copyright © 2024 Röck+Cöde VoF. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension JSONDecoder {
|
|
|
|
// MARK: Constants
|
|
static let `default` = {
|
|
let decoder = JSONDecoder()
|
|
|
|
decoder.dateDecodingStrategy = .iso8601
|
|
|
|
return decoder
|
|
}()
|
|
|
|
}
|