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 3529bc9 commit b12cae3Copy full SHA for b12cae3
index.js
@@ -11,7 +11,7 @@ export default function filledArray(fillValue, count) {
11
}
12
13
for (let index = 0; index < count; index++) {
14
- returnValue[index] = isFunction ? fillValue(index, count, returnValue) : fillValue;
+ returnValue[index] = fillValue(index, count, returnValue);
15
16
17
return returnValue;
0 commit comments