
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@merger203/reimagined-rotary-phone
Advanced tools


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)
})
FAQs

We found that @merger203/reimagined-rotary-phone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.