UNPKG
@prelude/function
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.3
Function module.
@prelude/function
/
cjs
/
not.js
6 lines
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
/**
@returns
negated predicate. */
const
not
= (
f
) =>
(
a
) =>
!
f
(a);
exports
.
default
= not;
//# sourceMappingURL=not.js.map