Sha256: 3f3bca3a2d2e591a0cb346058668da554af2940af79b2c347ae10c0cc9deb102

Contents?: true

Size: 1.41 KB

Versions: 48

Compression:

Stored size: 1.41 KB

Contents

'use strict';

Object.defineProperty(exports, "__esModule", {
    value: true
});
exports.default = until;

var _whilst = require('./whilst');

var _whilst2 = _interopRequireDefault(_whilst);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

/**
 * Repeatedly call `iteratee` until `test` returns `true`. Calls `callback` when
 * stopped, or an error occurs. `callback` will be passed an error and any
 * arguments passed to the final `iteratee`'s callback.
 *
 * The inverse of [whilst]{@link module:ControlFlow.whilst}.
 *
 * @name until
 * @static
 * @memberOf module:ControlFlow
 * @method
 * @see [async.whilst]{@link module:ControlFlow.whilst}
 * @category Control Flow
 * @param {Function} test - synchronous truth test to perform before each
 * execution of `iteratee`. Invoked with ().
 * @param {AsyncFunction} iteratee - An async function which is called each time
 * `test` fails. Invoked with (callback).
 * @param {Function} [callback] - A callback which is called after the test
 * function has passed and repeated execution of `iteratee` has stopped. `callback`
 * will be passed an error and any arguments passed to the final `iteratee`'s
 * callback. Invoked with (err, [results]);
 */
function until(test, iteratee, callback) {
    (0, _whilst2.default)(function () {
        return !test.apply(this, arguments);
    }, iteratee, callback);
}
module.exports = exports['default'];

Version data entries

48 entries across 46 versions & 11 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/async/until.js
disco_app-0.18.0 test/dummy/node_modules/async/until.js
disco_app-0.18.2 test/dummy/node_modules/async/until.js
disco_app-0.16.1 test/dummy/node_modules/async/until.js
disco_app-0.15.2 test/dummy/node_modules/async/until.js
disco_app-0.18.4 test/dummy/node_modules/async/until.js
disco_app-0.18.1 test/dummy/node_modules/async/until.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/async/until.js
disco_app-0.14.0 test/dummy/node_modules/async/until.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/async/until.js
tang-0.2.1 spec/tang_app/node_modules/async/until.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/async/until.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/async/until.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/async/until.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/async/until.js
tang-0.2.0 spec/tang_app/node_modules/async/until.js
tang-0.1.0 spec/tang_app/node_modules/async/until.js
tang-0.0.9 spec/tang_app/node_modules/async/until.js
enju_library-0.3.8 spec/dummy/node_modules/async/until.js
ilog-0.4.1 node_modules/async/until.js