test-action-debian-package/node_modules/ramda/es/internal/_complement.js

5 lines
108 B
JavaScript
Raw Normal View History

2020-03-26 14:37:35 +00:00
export default function _complement(f) {
return function () {
return !f.apply(this, arguments);
};
}