| 794 | |
| 795 | |
| 796 | FLSliceResult FLCreateJSONDelta(FLValue old, FLValue nuu) FLAPI { |
| 797 | try { |
| 798 | return toSliceResult(JSONDelta::create(old, nuu)); |
| 799 | } catch (const std::exception&) { |
| 800 | return {}; |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | bool FLEncodeJSONDelta(FLValue old, FLValue nuu, FLEncoder jsonEncoder) FLAPI { |
| 805 | try { |