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 271d77d commit b1e810bCopy full SHA for b1e810b
src/xlsx.js
@@ -15,7 +15,7 @@ export class Workbook {
15
: this.sheetNames.includes((name += ""))
16
? name
17
: null;
18
- if (sname === null) throw new Error(`Sheet not found: ${name}`);
+ if (sname == null) throw new Error(`Sheet not found: ${name}`);
19
const sheet = this._.getWorksheet(sname);
20
return extract(sheet, options);
21
}
0 commit comments