noble-secp256k1
Advanced tools
Comparing version 1.2.13 to 1.2.14
@@ -902,7 +902,5 @@ "use strict"; | ||
const webCrypto = typeof self === 'object' && 'crypto' in self ? self.crypto : undefined; | ||
const nodeRequire = typeof module !== 'undefined' && | ||
typeof module.require === 'function' && | ||
module.require.bind(module); | ||
const nodeRequire = typeof module !== 'undefined' && typeof require === 'function'; | ||
return { | ||
node: nodeRequire && !webCrypto ? nodeRequire('crypto') : undefined, | ||
node: nodeRequire && !webCrypto ? require('crypto') : undefined, | ||
web: webCrypto, | ||
@@ -909,0 +907,0 @@ }; |
{ | ||
"name": "noble-secp256k1", | ||
"version": "1.2.13", | ||
"version": "1.2.14", | ||
"description": "Fastest JS implementation of secp256k1. Independently audited, high-security, 0-dependency ECDSA & Schnorr signatures", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
56336
1096