Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Sep 19, 2019
1 parent b3b52be commit 7deb0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/core.scale.js
Expand Up @@ -72,7 +72,7 @@ function sample(arr, numItems) {
var result = [];
var increment = arr.length / numItems;
var i = 0;
var len = arr.length
var len = arr.length;

for (; i < len; i += increment) {
result.push(arr[Math.floor(i)]);
Expand Down

0 comments on commit 7deb0c6

Please sign in to comment.