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
I set a string containing "1.0" and it treats like a number, but it should be string.
Plunker: http://plnkr.co/edit/LKDa49lsomvHGMaycWtE
The text was updated successfully, but these errors were encountered:
Yeah, it's running all values through a JSON.parse, which converts strings to numbers.
I'm having an issue where some of my strings coincidentally match the exponential format, e.g.
ipCookie('testCookie', "123581763871623871628361723e12341"); console.log(ipCookie('testCookie')); // Logs Infinity
The library is trying to do too much. Just store strings and let the user figure out serialization and deserialization.
Sorry, something went wrong.
No branches or pull requests
I set a string containing "1.0" and it treats like a number, but it should be string.
Plunker: http://plnkr.co/edit/LKDa49lsomvHGMaycWtE
The text was updated successfully, but these errors were encountered: