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 d6f356d commit 14cf56eCopy full SHA for 14cf56e
src/helpers.js
@@ -343,7 +343,7 @@ define(function (require) {
343
console.log("the value of bins must be power of two and between 16 and 1024");
344
return safeBins
345
}
346
- if(bins && bins>=16 && bins<=1024 && Math.log2(bins)%1===0 ) //
+ if(bins && bins>=16 && bins<=1024 && Math.log2(bins)%1===0 )
347
return bins;
348
else {
349
0 commit comments