Socket
Socket
Sign inDemoInstall

uuid

Package Overview
Dependencies
0
Maintainers
4
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.2 to 2.0.3

4

package.json
{
"name": "uuid",
"version": "2.0.2",
"version": "2.0.3",
"description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",

@@ -34,3 +34,3 @@ "keywords": [

"type": "git",
"url": "https://github.com/shtylman/node-uuid.git"
"url": "https://github.com/defunctzombie/node-uuid.git"
},

@@ -37,0 +37,0 @@ "testling": {

var rng;
if (global.crypto && crypto.getRandomValues) {
var crypto = global.crypto || global.msCrypto; // for IE 11
if (crypto && crypto.getRandomValues) {
// WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto

@@ -6,0 +7,0 @@ // Moderately fast, high quality

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc