once-upon

0.0.2 • Public • Published

once-upon

===========

Executes a callback at most once upon the first of any number of events.

example

var once = require('once-upon'); var E = require('events').EventEmitter;

onceUpon('SIGINT SIGTERM', process, function(){ console.log('I will be called at most once'); });

process.emit('SIGTERM'); // "I will be called at most once"

install

> npm install once-upon

License

MIT

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i once-upon

    Weekly Downloads

    2

    Version

    0.0.2

    License

    MIT

    Last publish

    Collaborators

    • aaron
    • gjohnson