mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
11 lines
241 B
Swift
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)!
|
|
}
|
|
}
|