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
Per 0ea33e6#r25908135
Should probably be something like ...
var crypto = typeof(crypto) != undefined ? crypto : typeof(msCrypto) != undefined ? msCrypto : null; // etc...
The text was updated successfully, but these errors were encountered:
use typeof to check for crypto rather than global. Fixes #185 (#221)
0ea33e6
* use typeof to check for crypto rather than global. Fixes #185 * fix test(s) for node v0.12 * tweak
fix: use msCrypto if available. Fixes #241
b1b34a9
1fef18b
Successfully merging a pull request may close this issue.
Per 0ea33e6#r25908135
Should probably be something like ...
The text was updated successfully, but these errors were encountered: