6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
function negate(func) {
|
|
return ((...args) => !func(...args));
|
|
}
|
|
|
|
export { negate };
|