diff --git a/MVMCore/MVMCore/Models/JSON/JSONValue.swift b/MVMCore/MVMCore/Models/JSON/JSONValue.swift index 4c44839..25474eb 100644 --- a/MVMCore/MVMCore/Models/JSON/JSONValue.swift +++ b/MVMCore/MVMCore/Models/JSON/JSONValue.swift @@ -70,11 +70,11 @@ public enum JSONValue: Codable, Equatable { } } -//public func ==(lhs: JSONValue, rhs: JSONValue) -> Bool { -// let ld = try! lhs.encode() -// let rd = try! lhs.encode() -// return ld == rd -//} +public func ==(lhs: JSONValue, rhs: JSONValue) -> Bool { + let ld = try! lhs.encode() + let rd = try! rhs.encode() + return ld == rd +} extension JSONValue: ExpressibleByStringLiteral { public init(stringLiteral value: String) {