Flight-School / AnyCodable

Type-erased wrappers for Encodable, Decodable, and Codable values

Home Page:https://flight.school/books/codable

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

null being mapped to "\"null\""

jwboardman opened this issue · comments

This mapping is resulting in the string "null" to be shown in our app as if it is a legal value, and forcing us to do a regex to replace "\"null\"" with "null" in the resulting JSON before sending it on to our app, so in JSON you would see
"value",null,"value"
for example instead of
"value","null","value2"

Could null please be mapped to just null please?

commented

Duplicate of #29.