Files
30-seconds-of-code/test/negate/negate.js

2 lines
75 B
JavaScript

const negate = func => (...args) => !func(...args);
module.exports = negate