| 145 | |
| 146 | |
| 147 | FLSliceResult FLData_ConvertJSON(FLSlice json, FLError *outError) FLAPI { |
| 148 | FLEncoderImpl e(kFLEncodeFleece, json.size); |
| 149 | FLEncoder_ConvertJSON(&e, json); |
| 150 | return FLEncoder_Finish(&e, outError); |
| 151 | } |
| 152 | |
| 153 | |
| 154 | FLStringResult FLJSON5_ToJSON(FLString json5, |
nothing calls this directly
no test coverage detected