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 saw you use first argument as key of cache. What if the first argument is an object, like this:
const a = {}; const b = {c: {}} String(a) //"[object Object]" String(b) //"[object Object]"
Besides, can you provide any benchmark tests? I don't think it fit any case.
The text was updated successfully, but these errors were encountered:
It only supports primitive values. This is the reason it is fast.
Sorry, something went wrong.
No branches or pull requests
I saw you use first argument as key of cache.
What if the first argument is an object, like this:
Besides, can you provide any benchmark tests?
I don't think it fit any case.
The text was updated successfully, but these errors were encountered: