Socket
Socket
Sign inDemoInstall

uuid

Package Overview
Dependencies
1
Maintainers
4
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.1 to 1.4.2

benchmark/package.json

31

package.json
{
"name" : "uuid",
"version" : "1.4.1",
"description" : "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
"keywords" : ["uuid", "guid", "rfc4122"],
"author" : "Robert Kieffer <robert@broofa.com>",
"contributors" : [
"name": "uuid",
"version": "1.4.2",
"description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.",
"keywords": [
"uuid",
"guid",
"rfc4122"
],
"author": "Robert Kieffer <robert@broofa.com>",
"contributors": [
{
"name": "Christoph Tavan <dev@tavan.de>",
"github": "https://github.com/ctavan"
},
{
"name": "Vincent Voyer <vincent@zeroload.net>",
"github": "https://github.com/vvo"
}
],
"main" : "./uuid.js",
"main": "./uuid.js",
"devDependencies": {

@@ -21,7 +29,8 @@ "mocha": "1.8.0"

"browser": {
"./rng.js": "./rng-browser.js"
"./rng.js": "./rng-browser.js",
"./buffer.js": "./buffer-browser.js"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/shtylman/node-uuid.git"
"repository": {
"type": "git",
"url": "https://github.com/shtylman/node-uuid.git"
},

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

@@ -1,4 +0,4 @@

# uuid [![Build Status](https://secure.travis-ci.org/shtylman/node-uuid.png?branch=master)](http://travis-ci.org/shtylman/node-uuid) #
# uuid [![Build Status](https://secure.travis-ci.org/defunctzombie/node-uuid.png?branch=master)](http://travis-ci.org/defunctzombie/node-uuid) #
[![browser support](http://ci.testling.com/shtylman/node-uuid.png)](http://ci.testling.com/shtylman/node-uuid)
[![browser support](https://ci.testling.com/defunctzombie/node-uuid.png)](https://ci.testling.com/defunctzombie/node-uuid)

@@ -12,3 +12,3 @@ Simple, fast generation of [RFC4122](http://www.ietf.org/rfc/rfc4122.txt) UUIDS.

* Cryptographically strong random # generation on supporting platforms
* 1.1K minified and gzip'ed (Want something smaller? Check this [crazy shit](https://gist.github.com/982883) out! )
* 1185 bytes minified and gzip'ed (Want something smaller? Check this [crazy shit](https://gist.github.com/982883) out! )
* [Annotated source code](http://broofa.github.com/node-uuid/docs/uuid.html)

@@ -181,4 +181,5 @@

```
npm install uuid uuid-js
node benchmark/benchmark.js
cd benchmark/
npm install
node benchmark.js
```

@@ -185,0 +186,0 @@

@@ -11,4 +11,6 @@ // uuid.js

// Buffer class to use
var BufferClass = typeof(Buffer) == 'function' ? Buffer : Array;
// Buffer class to use,
// we can't use `Buffer || Array` otherwise Buffer would be
// shimmed by browserify and added to the browser build
var BufferClass = require('./buffer');

@@ -15,0 +17,0 @@ // Maps for number <-> hex string conversion

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