abdavid
abdavid
See #433 for context. **Describe the solution you'd like** Remove usage of `_.get` throughout Moleculer. **Describe alternatives you've considered** Source: https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_get ```javascript // Native const get = (obj, path, defaultValue...
See #433 for context. **Describe the solution you'd like** Remove usage of `_.defaultsDeep` throughout Moleculer, or import the dependency directly without bundling the whole lodash lib. **Describe alternatives you've considered**...
See #433 for context. **Describe the solution you'd like** Remove usage of `_.forIn` throughout Moleculer. **Describe alternatives you've considered** Alternatives: ``` // 1 for (variable of iterable) { statement }...
See #433 for context. **Describe the solution you'd like** Remove usage of `_.omit` throughout Moleculer. **Describe alternatives you've considered** Source: https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_omit ```javascript // Native var { a, c, ...result2 }...
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 ```javascript // Native var array = [1, 2, 1,...
See #433 for context. **Describe the solution you'd like** Remove usage of `_.random` throughout Moleculer. **Describe alternatives you've considered** Vanilla suggestion would be something like Source: https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_random ```javascript //Native ES6...
See #433 for context. **Describe the solution you'd like** Remove usage of `_.compact` throughout Moleculer. **Describe alternatives you've considered** Thesis is that it would be sufficient to use `filter(Boolean)` E.g....
See #433 for context. **Describe the solution you'd like** Remove usage of `_.pick` throughout Moleculer. **Describe alternatives you've considered** Vanilla suggestion would be something like ```javascript const pick = (o,...
https://github.com/Specifyapp/parsers/blob/4de22b38f655270467f8ec9ee018341c27e10f00/parsers/svg-to-jsx/svg-to-jsx.parser.ts#L161 Hi, It would be nice if it would be possible to configure what type of casing that should be used (seen in context with the newly added isTsx option)....
Are there plans in motion to upgrade to latest Apollo server? One of the main breaking changes revolve around subscriptions being refactored out. The [migration guide](https://www.apollographql.com/docs/apollo-server/migration/) outlines a possible way...