Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hig/utils

Package Overview
Dependencies
Maintainers
6
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hig/utils - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

CHANGELOG.md

11

build/index.es.js

@@ -22,4 +22,13 @@ /**

/**
* Generates a unique ID
* @param {string} key
* @returns {string} A generated id
*/
function generateId(key) {
return key + "-" + Math.floor(Math.random() * 100000, 5);
}
/* eslint-disable import/prefer-default-export */
export { combineEventHandlers };
export { combineEventHandlers, generateId };

@@ -26,4 +26,14 @@ 'use strict';

/**
* Generates a unique ID
* @param {string} key
* @returns {string} A generated id
*/
function generateId(key) {
return key + "-" + Math.floor(Math.random() * 100000, 5);
}
/* eslint-disable import/prefer-default-export */
exports.combineEventHandlers = combineEventHandlers;
exports.generateId = generateId;

2

package.json
{
"name": "@hig/utils",
"version": "0.1.0",
"version": "0.2.0",
"description": "Non-component specific utility functions for HIG components",

@@ -5,0 +5,0 @@ "author": "Autodesk Inc.",

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