8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
|
exports = function(predicate) {
|
||
|
return function() {
|
||
|
return !predicate.apply(this, arguments);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
module.exports = exports;
|