Files
HRM-System/node_modules/es-toolkit/dist/function/negate.mjs
2026-04-13 08:19:53 +08:00

6 lines
88 B
JavaScript

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