New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

big-uuid

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

big-uuid - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

2

package.json
{
"name": "big-uuid",
"version": "0.3.3",
"version": "0.3.4",
"description": "An RFC 4112 conformant UUID generator creating v1, v3, v4, and v5 UUIDs.",

@@ -5,0 +5,0 @@ "main": "dist/node.es6/index.js",

@@ -19,2 +19,15 @@ /* An RFC 4112 UUID generator for generating IFIDs, or Interactive Fiction

export * from './TypeAliases/TNamespaceId';
export * from './TypeAliases/TUUIDVersion';
export * from './TypeAliases/TUUIDVersion';
/* Export required crypto-js libraries to reduce bundle size in `ifid`. */
const SHA1 = require('crypto-js/sha1');
const SHA224 = require('crypto-js/sha224')
const MD5 = require('crypto-js/md5');
const hex = require('crypto-js/enc-hex');
export const cryptoJs = {
hex,
MD5,
SHA1,
SHA224,
};
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