summaryrefslogtreecommitdiff
path: root/lib/eachSeries.js
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2019-05-19 17:17:29 -0700
committerGitHub <noreply@github.com>2019-05-19 17:17:29 -0700
commit667e71760e7f2dd558e868796bd6e6008a3bac16 (patch)
treedc700c791438f49eea5e2d2aff2737e7a5442f0f /lib/eachSeries.js
parent4330d536c106592139fa82062494c9dba0da1fdb (diff)
downloadasync-667e71760e7f2dd558e868796bd6e6008a3bac16.tar.gz
BREAKING CHANGE: remove partial application feature of applyEach (#1640)
* BREAKING CHANGE: remove partial application feature of applyEach * add awaitable tests for applyEach
Diffstat (limited to 'lib/eachSeries.js')
-rw-r--r--lib/eachSeries.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eachSeries.js b/lib/eachSeries.js
index a23aef5..3831456 100644
--- a/lib/eachSeries.js
+++ b/lib/eachSeries.js
@@ -6,7 +6,7 @@ import awaitify from './internal/awaitify'
*
* Note, that unlike [`each`]{@link module:Collections.each}, this function applies iteratee to each item
* in series and therefore the iteratee functions will complete in order.
-
+
* @name eachSeries
* @static
* @memberOf module:Collections