Skip to content

Commit 14cf56e

Browse files
authored
removed comments
1 parent d6f356d commit 14cf56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ define(function (require) {
343343
console.log("the value of bins must be power of two and between 16 and 1024");
344344
return safeBins
345345
}
346-
if(bins && bins>=16 && bins<=1024 && Math.log2(bins)%1===0 ) //
346+
if(bins && bins>=16 && bins<=1024 && Math.log2(bins)%1===0 )
347347
return bins;
348348
else {
349349
console.log("the value of bins must be power of two and between 16 and 1024");

0 commit comments

Comments
 (0)