Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Distopico Vegan 9e639edc8d style: reformat indent 5 years ago
..
internal style: reformat indent 5 years ago
CHANGELOG.md style: reformat indent 5 years ago
LICENSE style: reformat indent 5 years ago
README.md style: reformat indent 5 years ago
all.js style: reformat indent 5 years ago
allLimit.js style: reformat indent 5 years ago
allSeries.js style: reformat indent 5 years ago
any.js style: reformat indent 5 years ago
anyLimit.js style: reformat indent 5 years ago
anySeries.js style: reformat indent 5 years ago
apply.js style: reformat indent 5 years ago
applyEach.js style: reformat indent 5 years ago
applyEachSeries.js style: reformat indent 5 years ago
asyncify.js style: reformat indent 5 years ago
auto.js style: reformat indent 5 years ago
autoInject.js style: reformat indent 5 years ago
bower.json style: reformat indent 5 years ago
cargo.js style: reformat indent 5 years ago
compose.js style: reformat indent 5 years ago
concat.js style: reformat indent 5 years ago
concatLimit.js style: reformat indent 5 years ago
concatSeries.js style: reformat indent 5 years ago
constant.js style: reformat indent 5 years ago
detect.js style: reformat indent 5 years ago
detectLimit.js style: reformat indent 5 years ago
detectSeries.js style: reformat indent 5 years ago
dir.js style: reformat indent 5 years ago
doDuring.js style: reformat indent 5 years ago
doUntil.js style: reformat indent 5 years ago
doWhilst.js style: reformat indent 5 years ago
during.js style: reformat indent 5 years ago
each.js style: reformat indent 5 years ago
eachLimit.js style: reformat indent 5 years ago
eachOf.js style: reformat indent 5 years ago
eachOfLimit.js style: reformat indent 5 years ago
eachOfSeries.js style: reformat indent 5 years ago
eachSeries.js style: reformat indent 5 years ago
ensureAsync.js style: reformat indent 5 years ago
every.js style: reformat indent 5 years ago
everyLimit.js style: reformat indent 5 years ago
everySeries.js style: reformat indent 5 years ago
filter.js style: reformat indent 5 years ago
filterLimit.js style: reformat indent 5 years ago
filterSeries.js style: reformat indent 5 years ago
find.js style: reformat indent 5 years ago
findLimit.js style: reformat indent 5 years ago
findSeries.js style: reformat indent 5 years ago
foldl.js style: reformat indent 5 years ago
foldr.js style: reformat indent 5 years ago
forEach.js style: reformat indent 5 years ago
forEachLimit.js style: reformat indent 5 years ago
forEachOf.js style: reformat indent 5 years ago
forEachOfLimit.js style: reformat indent 5 years ago
forEachOfSeries.js style: reformat indent 5 years ago
forEachSeries.js style: reformat indent 5 years ago
forever.js style: reformat indent 5 years ago
groupBy.js style: reformat indent 5 years ago
groupByLimit.js style: reformat indent 5 years ago
groupBySeries.js style: reformat indent 5 years ago
index.js style: reformat indent 5 years ago
inject.js style: reformat indent 5 years ago
log.js style: reformat indent 5 years ago
map.js style: reformat indent 5 years ago
mapLimit.js style: reformat indent 5 years ago
mapSeries.js style: reformat indent 5 years ago
mapValues.js style: reformat indent 5 years ago
mapValuesLimit.js style: reformat indent 5 years ago
mapValuesSeries.js style: reformat indent 5 years ago
memoize.js style: reformat indent 5 years ago
nextTick.js style: reformat indent 5 years ago
package.json style: reformat indent 5 years ago
parallel.js style: reformat indent 5 years ago
parallelLimit.js style: reformat indent 5 years ago
priorityQueue.js style: reformat indent 5 years ago
queue.js style: reformat indent 5 years ago
race.js style: reformat indent 5 years ago
reduce.js style: reformat indent 5 years ago
reduceRight.js style: reformat indent 5 years ago
reflect.js style: reformat indent 5 years ago
reflectAll.js style: reformat indent 5 years ago
reject.js style: reformat indent 5 years ago
rejectLimit.js style: reformat indent 5 years ago
rejectSeries.js style: reformat indent 5 years ago
retry.js style: reformat indent 5 years ago
retryable.js style: reformat indent 5 years ago
select.js style: reformat indent 5 years ago
selectLimit.js style: reformat indent 5 years ago
selectSeries.js style: reformat indent 5 years ago
seq.js style: reformat indent 5 years ago
series.js style: reformat indent 5 years ago
setImmediate.js style: reformat indent 5 years ago
some.js style: reformat indent 5 years ago
someLimit.js style: reformat indent 5 years ago
someSeries.js style: reformat indent 5 years ago
sortBy.js style: reformat indent 5 years ago
timeout.js style: reformat indent 5 years ago
times.js style: reformat indent 5 years ago
timesLimit.js style: reformat indent 5 years ago
timesSeries.js style: reformat indent 5 years ago
transform.js style: reformat indent 5 years ago
tryEach.js style: reformat indent 5 years ago
unmemoize.js style: reformat indent 5 years ago
until.js style: reformat indent 5 years ago
waterfall.js style: reformat indent 5 years ago
whilst.js style: reformat indent 5 years ago
wrapSync.js style: reformat indent 5 years ago

README.md

Async Logo

Build Status via Travis CI NPM version Coverage Status Join the chat at https://gitter.im/caolan/async 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)
})