0.0.6 • Published 9 years ago

emittable v0.0.6

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

Emittable

A Function Wrapper with promise-like syntax for callback chaining, using eventEmitters at its core.

Usage

npm install emittable

- OR -

git clone https://github.com/RebelMail/emittable.git
cd emittable
npm install
npm test
var Emittable = require('emittable');

fs.readFile
	.emit('./package.json')
	.then(msg)
	.catch(function(e){
		throw e;
	});

function msg(msg){console.log(msg.toString())}