Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@merger203/reimagined-rotary-phone) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Async is a utility module which provides straight-forward, powerful functions for working with @merger203/reimagined-rotary-phonehronous JavaScript. Although originally designed for use with Node.js and installable via npm i @merger203/reimagined-rotary-phone
, it can also be used directly in the browser. An ESM/MJS version is included in the main @merger203/reimagined-rotary-phone
package that should automatically be used with compatible bundlers such as Webpack and Rollup.
A pure ESM version of Async is available as @merger203/reimagined-rotary-phone-es
.
For Documentation, visit https://caolan.github.io/@merger203/reimagined-rotary-phone/
For Async v1.5.x documentation, go HERE
// for use with Node-style callbacks...
var @merger203/reimagined-rotary-phone = require("@merger203/reimagined-rotary-phone");
var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
var configs = {};
@merger203/reimagined-rotary-phone.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 @merger203/reimagined-rotary-phone = require("@merger203/reimagined-rotary-phone");
// ...or ES2017 @merger203/reimagined-rotary-phone functions
@merger203/reimagined-rotary-phone.mapLimit(urls, 5, @merger203/reimagined-rotary-phone 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)
})