2015-08-01 15:13:25 +00:00
|
|
|
import reject from 'lodash/collection/reject';
|
|
|
|
import curry from 'lodash/function/curry';
|
2015-07-31 16:16:19 +00:00
|
|
|
|
2015-08-01 15:13:25 +00:00
|
|
|
export default curry((predicate, collection) => reject(collection, predicate));
|