We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d29da commit 525f92aCopy full SHA for 525f92a
1 file changed
src/utils.ts
@@ -83,7 +83,7 @@ export function parseDimIndex(spec: string, count: number): string[] {
83
const start = parts[0];
84
const end = parts[1];
85
86
- if (!start || !end) {
+ if (start === undefined || end === undefined) {
87
return [];
88
}
89
0 commit comments