Sha256: e030538c45c9bb26215024bc1ca0d465b86dc39cee6b757fbe4cb113ae72e468

Contents?: true

Size: 1.49 KB

Versions: 46

Compression:

Stored size: 1.49 KB

Contents

'use strict';

var isPromise = require('is-promise');

/**
 * Return a function that will run a function asynchronously or synchronously
 *
 * example:
 * runAsync(wrappedFunction, callback)(...args);
 *
 * @param   {Function} func  Function to run
 * @param   {Function} cb    Callback function passed the `func` returned value
 * @return  {Function(arguments)} Arguments to pass to `func`. This function will in turn
 *                                return a Promise (Node >= 0.12) or call the callbacks.
 */

var runAsync = module.exports = function (func, cb) {
  cb = cb || function () {};

  return function () {
    var async = false;
    var args = arguments;

    var promise = new Promise(function (resolve, reject) {
      var answer = func.apply({
        async: function () {
          async = true;
          return function (err, value) {
            if (err) {
              reject(err);
            } else {
              resolve(value);
            }
          };
        }
      }, Array.prototype.slice.call(args));

      if (!async) {
        if (isPromise(answer)) {
          answer.then(resolve, reject);
        } else {
          resolve(answer);
        }
      }
    });

    promise.then(cb.bind(null, null), cb);

    return promise;
  }
};

runAsync.cb = function (func, cb) {
  return runAsync(function () {
    var args = Array.prototype.slice.call(arguments);
    if (args.length === func.length - 1) {
      args.push(this.async());
    }
    return func.apply(this, args);
  }, cb);
};

Version data entries

46 entries across 46 versions & 3 rubygems

Version Path
govuk_publishing_components-18.0.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.21.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.20.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.19.1 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.19.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.18.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.17.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.16.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.15.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.14.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.13.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.12.2 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.12.1 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.12.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.11.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.10.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.9.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.8.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.7.0 node_modules/standard/node_modules/run-async/index.js
govuk_publishing_components-17.6.1 node_modules/standard/node_modules/run-async/index.js