We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Im trying to unset a property with an empty array, but unset-value doesnt unset that property
const unsetValue = require('unset-value') let data = { "a": "a", "b": { "b": [], "bb": 1 }, "c": [] } unsetValue(data, 'b.b') // b.b isnt removed console.log(data) unsetValue(data, 'b.bb') // b.b is removed console.log(data) unsetValue(data, 'c') // b.b is removed ? console.log(data)
Seems that the "problem" is with 'has-value', but it works as expected. Maybe this should be checked against 'has-property' ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Im trying to unset a property with an empty array, but unset-value doesnt unset that property
Seems that the "problem" is with 'has-value', but it works as expected. Maybe this should be checked against 'has-property' ?
The text was updated successfully, but these errors were encountered: