diff --git a/README.md b/README.md index cfc29a0..5669aa9 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,9 @@ const prr = Prray.from(['www.google.com', 'npmjs.org']) const responses = await prr.mapAsync(fetch) // Async method chaining 🚀: - const htmls = await prr.mapAsync(fetch).mapAsync(r => r.text()) // Method chaining with async and common methods: - await prr .map(commonFunc) .sortAsync(asyncFunc) @@ -38,7 +36,6 @@ await prr .reduceAsync(asyncFunc2) // Concurrency limit: - const responses = await prr.mapAsync(fetch, { concurrency: 10 }) ```