We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d5e4c commit 30e66bcCopy full SHA for 30e66bc
src/plugins/plugin.decimation.js
@@ -10,7 +10,7 @@ function lttbDecimation(data, start, count, availableWidth, options) {
10
* The original implementation is MIT licensed.
11
*/
12
const samples = options.samples || availableWidth;
13
- // There is less points than the threshold, returning the whole array
+ // There are less points than the threshold, returning the whole array
14
if (samples >= count) {
15
return data.slice(start, start + count);
16
}
0 commit comments