10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function negate(func) {
|
|
return ((...args) => !func(...args));
|
|
}
|
|
|
|
exports.negate = negate;
|