"> supports-preserve-symlinks-flag 30f7226d9a first commit il y a 2 ans tailwind-color-palette 30f7226d9a first commit il y a 2 ans tailwindcss 30f7226d9a first commit il y a 2 ans thenify 30f7226d9a first commit il y a 2 ans thenify-all 30f7226d9a first commit il y a 2 ans to-regex-range 30f7226d9a first commit il y a 2 ans tr46 30f7226d9a first commit il y a 2 ans ts-interface-checker 30f7226d9a first commit il y a 2 ans uglify-js 30f7226d9a first commit il y a 2 ans underscore 30f7226d9a first commit il y a 2 ans upper-case 30f7226d9a first commit il y a 2 ans util-deprecate 30f7226d9a first commit il y a 2 ans valid-data-url 30f7226d9a first commit il y a 2 ans web-resource-inliner 30f7226d9a first commit il y a 2 ans webidl-conversions 30f7226d9a first commit il y a 2 ans whatwg-url 30f7226d9a first commit il y a 2 ans wrap-ansi 30f7226d9a first commit il y a 2 ans wrappy 30f7226d9a first commit il y a 2 ans y18n 30f7226d9a first commit il y a 2 ans yallist 30f7226d9a first commit il y a 2 ans yaml 30f7226d9a first commit il y a 2 ans yargs 30f7226d9a first commit il y a 2 ans yargs-parser 30f7226d9a first commit il y a 2 ans .yarn-integrity 30f7226d9a first commit il y a 2 ans tum/tmt_learning - Gogs: Simplico Git Service

Nessuna descrizione

Prach Pongpanich 6f337d0a21 install tailwind alpine daisyui 3 anni fa
..
LICENSE 6f337d0a21 install tailwind alpine daisyui 3 anni fa
README.md 6f337d0a21 install tailwind alpine daisyui 3 anni fa
index.js 6f337d0a21 install tailwind alpine daisyui 3 anni fa
package.json 6f337d0a21 install tailwind alpine daisyui 3 anni fa

README.md

run-parallel travis npm downloads javascript style guide

Run an array of functions in parallel

parallel Sauce Test Status

install

npm install run-parallel

usage

parallel(tasks, [callback])

Run the tasks array of functions in parallel, without waiting until the previous function has completed. If any of the functions pass an error to its callback, the main callback is immediately called with the value of the error. Once the tasks have completed, the results are passed to the final callback as an array.

It is also possible to use an object instead of an array. Each property will be run as a function and the results will be passed to the final callback as an object instead of an array. This can be a more readable way of handling the results.

arguments
  • tasks - An array or object containing functions to run. Each function is passed a callback(err, result) which it must call on completion with an error err (which can be null) and an optional result value.
  • callback(err, results) - An optional callback to run once all the functions have completed. This function gets a results array (or object) containing all the result arguments passed to the task callbacks.
example
var parallel = require('run-parallel')

parallel([
  function (callback) {
    setTimeout(function () {
      callback(null, 'one')
    }, 200)
  },
  function (callback) {
    setTimeout(function () {
      callback(null, 'two')
    }, 100)
  }
],
// optional callback
function (err, results) {
  // the results array will equal ['one','two'] even though
  // the second function had a shorter timeout.
})

This module is basically equavalent to async.parallel, but it's handy to just have the one function you need instead of the kitchen sink. Modularity! Especially handy if you're serving to the browser and need to reduce your javascript bundle size.

Works great in the browser with browserify!

see also

license

MIT. Copyright (c) Feross Aboukhadijeh.