1.1.0 • Published 9 years ago

func-to-async v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

func-to-async

Build Status

NPM

Utility to convert a sync function to async.

Install

  $ npm install func-to-async --save

Usage

  var toAsync = require('func-to-async');

  var asyncFunc = toAsync(syncFunc);

  asyncFunc(function(err) {
    if(err) {
      return console.error(err);
    }
  });

view tests for more examples.

API

func-to-async(fn#Function, ctx#Object)

fn

Type: Function

The Sync function to convert to async

ctx

Type: Object

optional

context to bind the function to.

License

MIT