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

event-pubsub

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

event-pubsub - npm Package Compare versions

Comparing version 4.2.3 to 4.2.4

.npmignore

6

es5.js

@@ -12,4 +12,3 @@ 'use strict';

if(!handler){
const err=new ReferenceError('handler not defined.');
throw(err);
throw new ReferenceError('handler not defined.');
}

@@ -31,4 +30,3 @@

if(!handler){
var err=new ReferenceError('handler not defined. if you wish to remove all handlers from the event please pass "*" as the handler');
throw err;
throw new ReferenceError('handler not defined. if you wish to remove all handlers from the event please pass "*" as the handler');
}

@@ -35,0 +33,0 @@

'use strict';
class EventPubSub {
constructor(scope){
this._events_={};
this.publish=this.trigger=this.emit;
this.subscribe=this.on;
this.unSubscribe=this.off;
constructor( scope ) {
this._events_ = {};
this.publish = this.trigger = this.emit;
this.subscribe = this.on;
this.unSubscribe = this.off;
}
on(type,handler){
if(!handler){
const err=new ReferenceError('handler not defined.');
throw(err);
on( type, handler ) {
if ( !handler ) {
throw new ReferenceError( 'handler not defined.' );
}
if(!this._events_[type]){
this._events_[type]=[];
if ( !this._events_[ type ] ) {
this._events_[ type ] = [];
}
this._events_[type].push(handler);
this._events_[ type ].push( handler );
return this;
}
off(type,handler){
if(!this._events_[type]){
off( type, handler ) {
if ( !this._events_[ type ] ) {
return this;
}
if(!handler){
var err=new ReferenceError('handler not defined. if you wish to remove all handlers from the event please pass "*" as the handler');
throw err;
if ( !handler ) {
throw new ReferenceError( 'handler not defined. if you wish to remove all handlers from the event please pass "*" as the handler' );
}
if(handler=='*'){
delete this._events_[type];
if ( handler == '*' ) {
delete this._events_[ type ];
return this;
}
const handlers=this._events_[type];
const handlers = this._events_[ type ];
while(handlers.includes(handler)){
while ( handlers.includes( handler ) ) {
handlers.splice(
handlers.indexOf(handler),
handlers.indexOf( handler ),
1

@@ -49,4 +47,4 @@ );

if(handlers.length<1){
delete this._events_[type];
if ( handlers.length < 1 ) {
delete this._events_[ type ];
}

@@ -57,25 +55,25 @@

emit(type,...args){
if(!this._events_[type]){
return this.emit$(type,...args);
emit( type, ...args ) {
if ( !this._events_[ type ] ) {
return this.emit$( type, ...args );
}
const handlers=this._events_[type];
const handlers = this._events_[ type ];
for(let handler of handlers){
handler.apply(this, args);
for ( let handler of handlers ) {
handler.apply( this, args );
}
return this.emit$(type,...args);
return this.emit$( type, ...args );
}
emit$(type,...args){
if(!this._events_['*']){
emit$( type, ...args ) {
if ( !this._events_[ '*' ] ) {
return this;
}
const catchAll=this._events_['*'];
const catchAll = this._events_[ '*' ];
for(let handler of catchAll){
handler.call(this, type, ...args);
for ( let handler of catchAll ) {
handler.call( this, type, ...args );
}

@@ -87,2 +85,2 @@

module.exports=EventPubSub;
module.exports = EventPubSub;
{
"name": "event-pubsub",
"version": "4.2.3",
"version": "4.2.4",
"description": "Super light and fast Extensible PubSub events and EventEmitters for Node and the browser with support for ES6 by default, and ES5 versions for older verions of node and older IE/Safari versions. Easy for any developer level. No frills, just high speed pubsub events!",

@@ -5,0 +5,0 @@ "main": "event-pubsub.js",

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