diff options
Diffstat (limited to 'node_modules/async/mapValuesLimit.js')
-rw-r--r-- | node_modules/async/mapValuesLimit.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/node_modules/async/mapValuesLimit.js b/node_modules/async/mapValuesLimit.js index e3840b070..f331fa01c 100644 --- a/node_modules/async/mapValuesLimit.js +++ b/node_modules/async/mapValuesLimit.js @@ -36,8 +36,9 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de * once it has completed with an error (which can be `null`) and a * transformed value. Invoked with (value, key, callback). * @param {Function} [callback] - A callback which is called when all `iteratee` - * functions have finished, or an error occurs. Result is an object of the - * transformed values from the `obj`. Invoked with (err, result). + * functions have finished, or an error occurs. `result` is a new object consisting + * of each key from `obj`, with each transformed value on the right-hand side. + * Invoked with (err, result). */ function mapValuesLimit(obj, limit, iteratee, callback) { callback = (0, _once2.default)(callback || _noop2.default); |