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
Sadly, when running this with Node.js 10, buffer.readUIntLE(offset, 8) throws an exception about only accepting byte lengths up to 6.
buffer.readUIntLE(offset, 8)
I don't know the reason for this change, but it's probably to make sure that there are no overflows because JavaScript does not support int64 values.
But since this was never a problem before, I think it's safe work around this instead of switching an int64 library.
The text was updated successfully, but these errors were encountered:
Sorry to be late. Thank you for your feedback. Today, I'll try to support Node.js 10.
Sorry, something went wrong.
No branches or pull requests
Sadly, when running this with Node.js 10,
buffer.readUIntLE(offset, 8)
throws an exception about only accepting byte lengths up to 6.I don't know the reason for this change, but it's probably to make sure that there are no overflows because JavaScript does not support int64 values.
But since this was never a problem before, I think it's safe work around this instead of switching an int64 library.
The text was updated successfully, but these errors were encountered: