fix indentation

This commit is contained in:
Sebastian McKenzie 2014-10-29 20:52:31 +11:00
parent cc094efe1b
commit 4b3ebc62b1

View File

@ -3,8 +3,8 @@ function *range(max, step) {
step = step || 1;
for (var i = 0; i < max; i += step) {
count++;
yield i;
count++;
yield i;
}
return count;