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 21a0dd0 commit 74521bcCopy full SHA for 74521bc
src/crank.ts
@@ -28,7 +28,7 @@ function arrayify<T>(
28
: typeof value === "string" ||
29
typeof (value as any)[Symbol.iterator] !== "function"
30
? [value as T]
31
- : [...(value as any)];
+ : [...(value as NonStringIterable<T>)];
32
}
33
34
function isIteratorLike(
0 commit comments