Socket
Socket
Sign inDemoInstall

tapable

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tapable - npm Package Compare versions

Comparing version 2.0.0-beta.2 to 2.0.0-beta.3

2

package.json
{
"name": "tapable",
"version": "2.0.0-beta.2",
"version": "2.0.0-beta.3",
"author": "Tobias Koppers @sokra",

@@ -5,0 +5,0 @@ "description": "Just a little module for plugins.",

@@ -82,3 +82,3 @@ type FixedSizeArray<T extends number, U> = T extends 0

type HookFactory<H> = (key: string, hook?: H) => H;
type HookFactory<H> = (key: any, hook?: H) => H;

@@ -91,4 +91,4 @@ interface HookMapInterceptor<H> {

constructor(factory: HookFactory<H>);
get(key: string): H | undefined;
for(key: string): H;
get(key: any): H | undefined;
for(key: any): H;
intercept(interceptor: HookMapInterceptor<H>): void;

@@ -95,0 +95,0 @@ }

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