Files
cannaiq/frontend/node_modules/es-toolkit/dist/function/negate.mjs
2025-11-28 19:45:44 -07:00

6 lines
88 B
JavaScript

function negate(func) {
return ((...args) => !func(...args));
}
export { negate };