We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I wanted to get the correct binary excel data but without saving it to a file.
const xlsx = json2xls({ example: "very nice" });
As your README says, I have to store it as a file:
fs.writeFileSync('data.xlsx', xlsx, 'binary');
I thought that i have to read it back to get its binary data buffer. But I could also use:
const realXlsx = new Buffer(xlsx.toString("binary"), "binary");
It would help other people if you could add that to your README file.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I wanted to get the correct binary excel data but without saving it to a file.
As your README says, I have to store it as a file:
I thought that i have to read it back to get its binary data buffer. But I could also use:
It would help other people if you could add that to your README file.
The text was updated successfully, but these errors were encountered: