mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/internal/_complement.js
|
|
|
|
|
|
export default function _complement(f) {
|
|
return function() {
|
|
return !f.apply(this, arguments);
|
|
};
|
|
}
|