2015-08-05 11:29:30 +00:00
|
|
|
import _reject from 'lodash/collection/reject';
|
|
|
|
import wrap from './wrap';
|
2015-07-31 16:16:19 +00:00
|
|
|
|
2015-08-05 11:29:30 +00:00
|
|
|
function reject(predicate, collection) {
|
|
|
|
return _reject(collection, predicate);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default wrap(reject);
|