-
Notifications
You must be signed in to change notification settings - Fork 40
Update collection methods #570
base: 1.0.0
Are you sure you want to change the base?
Conversation
It's our old friend, the |
Thanks @Tweety-FER ! I've created a new I've tried running the |
@robertjd Thanks for pointing that out. Updated the example in this repo and fiddled with the express lib to see what's going on. After pointing the dep at this branch and fixing a couple of lines of code in the express lib, the errors apparently went away. Is it the same for you? It's this PR: stormpath/express-stormpath#546 |
Update the
async
library to2.1.x
and update the code and tests to reflect this.The most important changes are that some methods that previously took
next
functions andcallback
s that only had an arity of one now have an arity of 2. For example,filter
can now be called as:The following methods (method aliases given in brackets) are affected:
filter
(select
)reject
detect
some
(any
)every
(all
)Fixes #569
Makes these PRs redundant: