-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Remove deprecated stuff #92
Conversation
@@ -93,25 +75,15 @@ | |||
* @param {Object} params Data should be sent to the method. | |||
* @param {Object} [execOptions] Exec-specific options. | |||
* @param {Boolean} [execOptions.enableBatching=true] Should the current call of the method be batched. | |||
* @param {Boolean} [execOptions.noBatching=false] @deprecated Should the current call of the | |||
* method be batched. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove this line, it's a part of the description above.
👍 |
noBatching: !isArray(options.noBatching) && Boolean(options.noBatching) | ||
enableBatching: options.hasOwnProperty('enableBatching') ? | ||
options.enableBatching : | ||
true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good to add a comment that batching is enabled by default and that's why we have a boolean literal here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See jsdoc
Purification 👍 |
0b347a5
to
94f68d2
Compare
94f68d2
to
16afcb2
Compare
No description provided.