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
can not use Long.MAX_VALUE
Hashids hashids = new Hashids(); String encode = hashids.encode(Long.MAX_VALUE); System.out.println(encode);
The text was updated successfully, but these errors were encountered:
Hi @stjava 👋, thanks for your contribution 👍
Have you made sure to enable the additional feature that disable the maximum number size limit? Otherwise this library ensures the interoperability with the algorithm reference implementation which won't allow the usage of Java's Long.MAX_VALUE because of the way JavaScript handles number values.
Long.MAX_VALUE
Sorry, something went wrong.
stjava
No branches or pull requests
can not use Long.MAX_VALUE
Hashids hashids = new Hashids();
String encode = hashids.encode(Long.MAX_VALUE);
System.out.println(encode);
The text was updated successfully, but these errors were encountered: