You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is an example of how data loss can occur on missing keys. It would be nice if the "failure" condition favored keeping data instead of skipping it 🙂
constobj={users: [{name: 'Tom',id: 1},{name: 'Jane',id: 2},],};constorder={'$': ['users'],'$.users.0': ['id','name'],};constresult=orderedJSON.order(obj,order);// result is missing the second user//// {// users: [{// id: 1,// name: 'Tom',// }],// }
The text was updated successfully, but these errors were encountered:
Here is an example of how data loss can occur on missing keys. It would be nice if the "failure" condition favored keeping data instead of skipping it 🙂
The text was updated successfully, but these errors were encountered: