Socket
Socket
Sign inDemoInstall

@algolia/autocomplete-shared

Package Overview
Dependencies
Maintainers
68
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@algolia/autocomplete-shared - npm Package Compare versions

Comparing version 1.2.2 to 1.3.0

dist/esm/decycle.d.ts

2

dist/esm/index.d.ts
export * from './createRef';
export * from './debounce';
export * from './decycle';
export * from './flatten';
export * from './generateAutocompleteId';

@@ -4,0 +6,0 @@ export * from './getAttributeValueByPath';

export * from './createRef';
export * from './debounce';
export * from './decycle';
export * from './flatten';
export * from './generateAutocompleteId';

@@ -4,0 +6,0 @@ export * from './getAttributeValueByPath';

2

dist/esm/invariant.d.ts

@@ -6,2 +6,2 @@ /**

*/
export declare function invariant(condition: boolean, message: string): void;
export declare function invariant(condition: boolean, message: string | (() => string)): void;

@@ -12,4 +12,4 @@ /**

if (!condition) {
throw new Error("[Autocomplete] ".concat(message));
throw new Error("[Autocomplete] ".concat(typeof message === 'function' ? message() : message));
}
}
{
"name": "@algolia/autocomplete-shared",
"description": "Shared utils for Autocomplete packages.",
"version": "1.2.2",
"version": "1.3.0",
"license": "MIT",

@@ -6,0 +6,0 @@ "homepage": "https://github.com/algolia/autocomplete",

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