Skip to content

Commit 2ee673f

Browse files
authored
Housekeeping (#1772)
* rimraf was not being used * one less use of lodash dep * shorter name variant * one less lodash fn being used * use native forEach * result was a object * one less lodash recommendation * more explicit path * removed a unused variable
1 parent cdfb491 commit 2ee673f

File tree

7 files changed

+12255
-76
lines changed

7 files changed

+12255
-76
lines changed

lib/seq.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { promiseCallback, PROMISE_SYMBOL } from './internal/promiseCallback.js'
2626
* app.get('/cats', function(request, response) {
2727
* var User = request.models.User;
2828
* async.seq(
29-
* _.bind(User.get, User), // 'User.get' has signature (id, callback(err, data))
29+
* User.get.bind(User), // 'User.get' has signature (id, callback(err, data))
3030
* function(user, fn) {
3131
* user.getCats(fn); // 'getCats' has signature (callback(err, data))
3232
* }

0 commit comments

Comments
 (0)