Socket
Socket
Sign inDemoInstall

lodash-uuid

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2

4

index.js

@@ -29,5 +29,5 @@ (function () {

extendWith.uuid = function () {
var d = new Date().getTime();
var d = _.now();
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = (d + Math.random() * 16) % 16 | 0;
var r = (d + _.random(16)) % 16 | 0;
d = Math.floor(d / 16);

@@ -34,0 +34,0 @@ return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16);

@@ -27,3 +27,3 @@ {

},
"version": "0.0.1"
"version": "0.0.2"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc