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 1de7e3a commit 9f147d5Copy full SHA for 9f147d5
src/Control/Apply.js
@@ -4,7 +4,7 @@ exports.arrayApply = function (fs) {
4
return function (xs) {
5
var l = fs.length;
6
var k = xs.length;
7
- var result = Array(l*k);
+ var result = new Array(l*k);
8
var n = 0;
9
for (var i = 0; i < l; i++) {
10
var f = fs[i];
0 commit comments