Socket
Socket
Sign inDemoInstall

node-uuid

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-uuid - npm Package Compare versions

Comparing version 1.4.2 to 1.4.3

bower.json

4

component.json

@@ -5,3 +5,3 @@ {

"description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
"version": "1.4.0",
"version": "1.4.3",
"author": "Robert Kieffer <robert@broofa.com>",

@@ -19,2 +19,2 @@ "contributors": [

"license": "MIT"
}
}

@@ -19,3 +19,3 @@ {

"repository" : { "type" : "git", "url" : "https://github.com/broofa/node-uuid.git" },
"version" : "1.4.2",
"version" : "1.4.3",
"licenses": [

@@ -22,0 +22,0 @@ {

@@ -227,8 +227,10 @@ // uuid.js

if (typeof define === 'function' && define.amd) {
if (typeof(module) != 'undefined' && module.exports) {
// Publish as node.js module
module.exports = uuid;
} else if (typeof define === 'function' && define.amd) {
// Publish as AMD module
define(function() {return uuid;});
} else if (typeof(module) != 'undefined' && module.exports) {
// Publish as node.js module
module.exports = uuid;
} else {

@@ -235,0 +237,0 @@ // Publish as global (in browsers)

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc