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 be34129 commit 0495799Copy full SHA for 0495799
src/index.ts
@@ -91,8 +91,8 @@ function _makeMatrix<D extends number, T>(
91
currentPosition[currentDimension] = i;
92
return needsRecursion
93
? _makeMatrix(remainingDimensions, initialValues, currentPosition)
94
- : typeof initialValues === "function" // @ts-expect-error: "expression is not callable" https://github.com/microsoft/TypeScript/issues/37663
95
- ? initialValues(currentPosition.slice())
+ : initialValues instanceof Function
+ ? initialValues(currentPosition.slice() as Vector<D>)
96
: initialValues;
97
});
98
0 commit comments