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

diginext-utils

Package Overview
Dependencies
Maintainers
2
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

diginext-utils - npm Package Compare versions

Comparing version 1.0.13 to 1.0.14

dist/string/generateUUID.js

17

dist/string/index.js

@@ -6,5 +6,3 @@ "use strict";

});
exports.clearUnicodeCharacters = exports.capitalizeName = exports.capitalize = exports.allCharacter = void 0;
exports.generateUUID = generateUUID;
exports.toUpperCase = exports.toLowerCase = exports.titleize = exports.textLowCase = exports.randomStringByLength = exports.randAllCharacterByLength = exports.punctuation = exports.numeric = exports.makeString = exports.getBetween = void 0;
exports.toUpperCase = exports.toLowerCase = exports.titleize = exports.textLowCase = exports.randomStringByLength = exports.randAllCharacterByLength = exports.punctuation = exports.numeric = exports.makeString = exports.getBetween = exports.clearUnicodeCharacters = exports.capitalizeName = exports.capitalize = exports.allCharacter = void 0;

@@ -521,13 +519,2 @@ require("core-js/modules/es.regexp.constructor.js");

exports.clearUnicodeCharacters = clearUnicodeCharacters;
function generateUUID() {
// http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/21963136#21963136
const d0 = Math.random() * 0xffffffff | 0;
const d1 = Math.random() * 0xffffffff | 0;
const d2 = Math.random() * 0xffffffff | 0;
const d3 = Math.random() * 0xffffffff | 0;
const uuid = _lut[d0 & 0xff] + _lut[d0 >> 8 & 0xff] + _lut[d0 >> 16 & 0xff] + _lut[d0 >> 24 & 0xff] + "-" + _lut[d1 & 0xff] + _lut[d1 >> 8 & 0xff] + "-" + _lut[d1 >> 16 & 0x0f | 0x40] + _lut[d1 >> 24 & 0xff] + "-" + _lut[d2 & 0x3f | 0x80] + _lut[d2 >> 8 & 0xff] + "-" + _lut[d2 >> 16 & 0xff] + _lut[d2 >> 24 & 0xff] + _lut[d3 & 0xff] + _lut[d3 >> 8 & 0xff] + _lut[d3 >> 16 & 0xff] + _lut[d3 >> 24 & 0xff]; // .toLowerCase() here flattens concatenated strings to save heap memory space.
return uuid.toLowerCase();
}
exports.clearUnicodeCharacters = clearUnicodeCharacters;
{
"name": "diginext-utils",
"version": "1.0.13",
"version": "1.0.14",
"author": {

@@ -5,0 +5,0 @@ "name": "TOP GROUP (a.k.a Digitop)",

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