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
The filter object is mutated where there is an empty array. Objects should be treated as immutable.
e.g.
const filter = {value: []}; dare.get('table', ['name'], filter); console.log(filter.value); // [null] console.log(filter.value.length); // 1
The text was updated successfully, but these errors were encountered:
6c763dc
chore(release): 0.32.3 [skip ci]
aca33d8
## [0.32.3](v0.32.2...v0.32.3) (2019-09-25) ### Bug Fixes * **filters:** prevent dare from modifying input filters, fixes [#91](#91) ([6c763dc](6c763dc))
🎉 This issue has been resolved in version 0.32.3 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
No branches or pull requests
The filter object is mutated where there is an empty array. Objects should be treated as immutable.
e.g.
The text was updated successfully, but these errors were encountered: