Skip to content
This repository has been archived by the owner on Apr 17, 2022. It is now read-only.

kiltjs/azazel

Repository files navigation

@kilt/azazel

Another events handler/wrapper that can be attached to an object.

Build Status GitHub license

Installation

npm i -S @kilt/azazel

# npm install --save @kilt/azazel

Usage

var obj = new Azazel();

obj.on('foo', function () {
  flag = true;
});

obj.trigger('foo');