Dmitriy Mozgovoy
Dmitriy Mozgovoy
(This PR is based on #4753) - added the ability to capture the request progress in the node.js environment. Progress listeners will handle the following data structure: ```js { loaded:...
Is there any particular way to document overloaded constructor? For example, I would like to document the following constructor: ``` class Pokemon{ /** * @param {Object} options - some options...
I'm trying to document a dynamic generated method, so I use `name` tag for this, but it doesn't generate any namepaths/documentation. ```javascript class Animal{ /** * Creates a new animal...
I need to document a decorator with an example, but this breaks the parser because jsdoc2md trying to parse decorators in the example block as jsdoc tag. ``` /** *...
The library has strange, almost dead conditional branches with checking `_events` and `_all` props, since _events is always truly, moreover it is initialized with object even in wildcard mode, but...
It would be nice to be able to choose the Promise constructor to compose the middleware. This does not affect performance in any way but makes the helper more flexible....
Since `v0.27.2` Axios [supports](https://github.com/axios/axios#-automatic-serialization) FormData serializer that encodes object fields with `{}` ending to a JSON string. So this PR adds the ability to parse such fields by multer. ```js...
Fixed broken export due to regression bug; ESM module export is: ```js import axios, {Axios, CanceledError, AxiosError, AxiosHeaders} from 'axios; ``` The UMD package only exports the **axios** factory, which...
Brief description: - `require` can only be used with `default` export as it was in 0.x versions; - `import` can be used with both `default` & `named` exports; Detailed: -...