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 c52b73f commit 2c7fd82Copy full SHA for 2c7fd82
src/xlsx.js
@@ -68,7 +68,7 @@ function valueOf(cell) {
68
69
function parseRange(specifier = ":", {columnCount, rowCount}) {
70
specifier += "";
71
- if (!specifier.match(/^[A-Z]*[0-9]*:[A-Z]*[0-9]*$/))
+ if (!specifier.match(/^[A-Z]*\d*:[A-Z]*\d*$/))
72
throw new Error("Malformed range specifier");
73
const [[c0 = 0, r0 = 0], [c1 = columnCount - 1, r1 = rowCount - 1]] =
74
specifier.split(":").map(fromCellReference);
0 commit comments