Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
christian 4571a14169 android fix 3 yıl önce
..
dist android fix 3 yıl önce
internal android fix 3 yıl önce
CHANGELOG.md android fix 3 yıl önce
LICENSE android fix 3 yıl önce
README.md android fix 3 yıl önce
all.js android fix 3 yıl önce
allLimit.js android fix 3 yıl önce
allSeries.js android fix 3 yıl önce
any.js android fix 3 yıl önce
anyLimit.js android fix 3 yıl önce
anySeries.js android fix 3 yıl önce
apply.js android fix 3 yıl önce
applyEach.js android fix 3 yıl önce
applyEachSeries.js android fix 3 yıl önce
asyncify.js android fix 3 yıl önce
auto.js android fix 3 yıl önce
autoInject.js android fix 3 yıl önce
bower.json android fix 3 yıl önce
cargo.js android fix 3 yıl önce
compose.js android fix 3 yıl önce
concat.js android fix 3 yıl önce
concatLimit.js android fix 3 yıl önce
concatSeries.js android fix 3 yıl önce
constant.js android fix 3 yıl önce
detect.js android fix 3 yıl önce
detectLimit.js android fix 3 yıl önce
detectSeries.js android fix 3 yıl önce
dir.js android fix 3 yıl önce
doDuring.js android fix 3 yıl önce
doUntil.js android fix 3 yıl önce
doWhilst.js android fix 3 yıl önce
during.js android fix 3 yıl önce
each.js android fix 3 yıl önce
eachLimit.js android fix 3 yıl önce
eachOf.js android fix 3 yıl önce
eachOfLimit.js android fix 3 yıl önce
eachOfSeries.js android fix 3 yıl önce
eachSeries.js android fix 3 yıl önce
ensureAsync.js android fix 3 yıl önce
every.js android fix 3 yıl önce
everyLimit.js android fix 3 yıl önce
everySeries.js android fix 3 yıl önce
filter.js android fix 3 yıl önce
filterLimit.js android fix 3 yıl önce
filterSeries.js android fix 3 yıl önce
find.js android fix 3 yıl önce
findLimit.js android fix 3 yıl önce
findSeries.js android fix 3 yıl önce
foldl.js android fix 3 yıl önce
foldr.js android fix 3 yıl önce
forEach.js android fix 3 yıl önce
forEachLimit.js android fix 3 yıl önce
forEachOf.js android fix 3 yıl önce
forEachOfLimit.js android fix 3 yıl önce
forEachOfSeries.js android fix 3 yıl önce
forEachSeries.js android fix 3 yıl önce
forever.js android fix 3 yıl önce
groupBy.js android fix 3 yıl önce
groupByLimit.js android fix 3 yıl önce
groupBySeries.js android fix 3 yıl önce
index.js android fix 3 yıl önce
inject.js android fix 3 yıl önce
log.js android fix 3 yıl önce
map.js android fix 3 yıl önce
mapLimit.js android fix 3 yıl önce
mapSeries.js android fix 3 yıl önce
mapValues.js android fix 3 yıl önce
mapValuesLimit.js android fix 3 yıl önce
mapValuesSeries.js android fix 3 yıl önce
memoize.js android fix 3 yıl önce
nextTick.js android fix 3 yıl önce
package.json android fix 3 yıl önce
parallel.js android fix 3 yıl önce
parallelLimit.js android fix 3 yıl önce
priorityQueue.js android fix 3 yıl önce
queue.js android fix 3 yıl önce
race.js android fix 3 yıl önce
reduce.js android fix 3 yıl önce
reduceRight.js android fix 3 yıl önce
reflect.js android fix 3 yıl önce
reflectAll.js android fix 3 yıl önce
reject.js android fix 3 yıl önce
rejectLimit.js android fix 3 yıl önce
rejectSeries.js android fix 3 yıl önce
retry.js android fix 3 yıl önce
retryable.js android fix 3 yıl önce
select.js android fix 3 yıl önce
selectLimit.js android fix 3 yıl önce
selectSeries.js android fix 3 yıl önce
seq.js android fix 3 yıl önce
series.js android fix 3 yıl önce
setImmediate.js android fix 3 yıl önce
some.js android fix 3 yıl önce
someLimit.js android fix 3 yıl önce
someSeries.js android fix 3 yıl önce
sortBy.js android fix 3 yıl önce
timeout.js android fix 3 yıl önce
times.js android fix 3 yıl önce
timesLimit.js android fix 3 yıl önce
timesSeries.js android fix 3 yıl önce
transform.js android fix 3 yıl önce
tryEach.js android fix 3 yıl önce
unmemoize.js android fix 3 yıl önce
until.js android fix 3 yıl önce
waterfall.js android fix 3 yıl önce
whilst.js android fix 3 yıl önce
wrapSync.js android fix 3 yıl önce

README.md

Async Logo

Build Status via Travis CI NPM version Coverage Status libhive - Open source examples jsDelivr Hits

Async is a utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript. Although originally designed for use with Node.js and installable via npm install --save async, it can also be used directly in the browser.

This version of the package is optimized for the Node.js environment. If you use Async with webpack, install async-es instead.

For Documentation, visit https://caolan.github.io/async/

For Async v1.5.x documentation, go HERE

// for use with Node-style callbacks...
var async = require("async");

var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
var configs = {};

async.forEachOf(obj, (value, key, callback) => {
    fs.readFile(__dirname + value, "utf8", (err, data) => {
        if (err) return callback(err);
        try {
            configs[key] = JSON.parse(data);
        } catch (e) {
            return callback(e);
        }
        callback();
    });
}, err => {
    if (err) console.error(err.message);
    // configs is now a map of JSON data
    doSomethingWith(configs);
});
var async = require("async");

// ...or ES2017 async functions
async.mapLimit(urls, 5, async function(url) {
    const response = await fetch(url)
    return response.body
}, (err, results) => {
    if (err) throw err
    // results is now an array of the response bodies
    console.log(results)
})