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

remitter

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remitter - npm Package Compare versions

Comparing version

to
0.2.16

4

dist/main.d.ts
/**
* A symbol that can be used as an event name to listen to all events.
* A event name that can be used to listen to all events.
*/
declare const ANY_EVENT: unique symbol;
declare const ANY_EVENT: "$ ANY_EVENT $";
type ANY_EVENT = typeof ANY_EVENT;

@@ -6,0 +6,0 @@

'use strict';
// src/constants.ts
var ANY_EVENT = Symbol("any");
var ANY_EVENT = "$\u2009ANY_EVENT\u2009$";

@@ -6,0 +6,0 @@ // src/utils.ts

{
"name": "remitter",
"version": "0.2.15",
"version": "0.2.16",
"private": false,

@@ -5,0 +5,0 @@ "description": "A TypeScript friendly event emitter with easy re-emitting events.",

/**
* A symbol that can be used as an event name to listen to all events.
* A event name that can be used to listen to all events.
*/
export const ANY_EVENT = Symbol("any");
export const ANY_EVENT = "$\u2009ANY_EVENT\u2009$" as const;
export type ANY_EVENT = typeof ANY_EVENT;

Sorry, the diff of this file is not supported yet