Files
divkit/client/ios/Core/BasePublic/EncodableExtensions.swift
T
2023-03-28 12:17:21 +03:00

11 lines
241 B
Swift

// Copyright 2021 Yandex LLC. All rights reserved.
import Foundation
extension Encodable {
public func toJSONString() throws -> String {
let data = try JSONEncoder().encode(self)
return String(data: data, encoding: .utf8)!
}
}