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
Hej
I've found a case, where wrong output is returned.
const SharedMap = require("sharedmap"); const map = new SharedMap(4, 4, 4); map.set("var0", "123"); map.set("var1", "123"); if ("123" !== map.get("var0")) { console.log("Got wrong output: " + map.get("var0")); }
I've isolated the problem to missing space for zero bytes in keysData and valuesData.
keysData
valuesData
And I've made PR for it
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hej
I've found a case, where wrong output is returned.
I've isolated the problem to missing space for zero bytes in
keysData
andvaluesData
.And I've made PR for it
The text was updated successfully, but these errors were encountered: