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
See #433 for context.
Describe the solution you'd like Remove usage of _.uniq throughout Moleculer.
_.uniq
Describe alternatives you've considered Source: https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_uniq
// Native var array = [1, 2, 1, 4, 1, 3]; var result = [...new Set(array)]; console.log(result) // output: [1, 2, 4, 3]
Additional context https://github.com/moleculerjs/moleculer/search?q=_.uniq&unscoped_q=_.uniq
The text was updated successfully, but these errors were encountered:
Need to test that it works correctly with objects as well.
Sorry, something went wrong.
No branches or pull requests
See #433 for context.
Describe the solution you'd like
Remove usage of
_.uniq
throughout Moleculer.Describe alternatives you've considered
Source: https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_uniq
Additional context
https://github.com/moleculerjs/moleculer/search?q=_.uniq&unscoped_q=_.uniq
The text was updated successfully, but these errors were encountered: