swc/bundler/tests/.cache/deno/7e1e03ae78ebbfe81bfa16175375dc339d7de73c.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

32 lines
813 B
TypeScript

// Loaded from https://deno.land/x/ramda@v0.27.2/source/complement.js
import lift from './lift.js';
import not from './not.js';
/**
* Takes a function `f` and returns a function `g` such that if called with the same arguments
* when `f` returns a "truthy" value, `g` returns `false` and when `f` returns a "falsy" value `g` returns `true`.
*
* `R.complement` may be applied to any functor
*
* @func
* @memberOf R
* @since v0.12.0
* @category Logic
* @sig (*... -> *) -> (*... -> Boolean)
* @param {Function} f
* @return {Function}
* @see R.not
* @example
*
* const isNotNil = R.complement(R.isNil);
* R.isNil(null); //=> true
* isNotNil(null); //=> false
* R.isNil(7); //=> false
* isNotNil(7); //=> true
*/
var complement = lift(not);
export default complement;