Feross Aboukhadijeh 40202a00b7 BREAKING: change how the filter function works
It's non-standard for a callback function to take a non-error argument
in the first position.

So instead of the filter callback accepting three types of arguments:

cb(true) // allowed
cb(false) // disallowed
cb(new Error('custom message')) // disallowed with custom message

It now accepts two forms:

cb(new Error('custom message')) // disallowed with custom message
cb(null) // allowed
2017-03-01 22:54:40 -08:00
..
2016-05-29 23:12:23 -07:00
2016-05-29 23:12:23 -07:00
2016-05-29 23:12:23 -07:00
2016-05-29 23:12:23 -07:00
2016-08-05 18:41:25 -07:00
2016-07-29 18:18:32 -07:00