diff --git a/Sources/XXClient/Helpers/JSONHelpers.swift b/Sources/XXClient/Helpers/JSONHelpers.swift index eb719ec95a7038f4059da5faf8e9e25390fdddfa..7527ac9ae217c188ff837501fd472b23ff478862 100644 --- a/Sources/XXClient/Helpers/JSONHelpers.swift +++ b/Sources/XXClient/Helpers/JSONHelpers.swift @@ -1,5 +1,29 @@ import Foundation +/// Replaces all numbers at provided key with string equivalents +/// +/// Example input: +/// { +/// "key": 123, +/// "object": { +/// "hello": "world", +/// "key": 321 +/// } +/// } +/// +/// Example output: +/// { +/// "key": "123", +/// "object": { +/// "hello": "world", +/// "key": "321" +/// } +/// } +/// +/// - Parameters: +/// - input: JSON data +/// - key: the key which values should be converted +/// - Returns: JSON data func convertJsonNumberToString( in input: Data, at key: String @@ -18,6 +42,30 @@ func convertJsonNumberToString( return output } +/// Replaces all strings at provided key with number equivalents +/// +/// Example input: +/// { +/// "key": "123", +/// "object": { +/// "hello": "world", +/// "key": "321" +/// } +/// } +/// +/// Example output: +/// { +/// "key": 123, +/// "object": { +/// "hello": "world", +/// "key": 321 +/// } +/// } +/// +/// - Parameters: +/// - input: JSON data +/// - key: the key which values should be converted +/// - Returns: JSON data func convertJsonStringToNumber( in input: Data, at key: String