1. May 08, 2020
  2. May 06, 2020
  3. May 05, 2020
  4. Jan 21, 2020
  5. Oct 24, 2019
  6. Oct 22, 2019
  7. Oct 21, 2019
  8. Oct 18, 2019
  9. Oct 17, 2019
  10. Oct 15, 2019
  11. Oct 14, 2019
  12. Oct 12, 2019
  13. Oct 11, 2019
    • Henrique Cabral's avatar
      Add json_object_update_recursive() · cb4727c4
      Henrique Cabral authored
      Support merging values nested within objects. For instance, merging:
      
          {
      	"foo": 1,
      	"bar": {
      	    "baz": 2
      	}
          }
      
      with
      
          {
      	"bar": {
      	    "baz": 3
      	}
          }
      
      results in
      
          {
      	"foo": 1,
      	"bar": {
      	    "baz": 3
      	}
          }
      
      instead of overwriting the value for the bar key.
      cb4727c4
  14. Oct 10, 2019