Keys of empty values are not removed #40
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Created by: janemarshal
document = [ { 'taco' : {} } , { 'salsa' : [ { 'burrito' : { 'taco' : 69 } } ] } ]
nested_delete(document, 'taco')
Response: [{'taco': {}}, {'salsa': [{'burrito': {}}]}]
Created by: russellballestrini
Help wanted. I would start by writing a test case using something similar to @janemarshal's issue report and create a pull request with that failing test and then a test which fixes the test. Ideally in two separate commits of a single pull request.
https://russell.ballestrini.net/tips-for-getting-pull-requests-approved/