UNPKG
logical-not
Version:
latest (1.0.9)
1.0.9
1.0.7
1.0.5
1.0.3
1.0.1
1.0.0
Logical NOT Function
github.com/PavelDymkov/logical-not
PavelDymkov/logical-not
logical-not
/
index.js
14 lines
(12 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** *
@param
{any} value *
@returns
{boolean} */
function
not
(
value
)
{
return
!value; } module.exports = Object.
defineProperties
(not, {
default
: {
value
: not },
not
: {
value
: not },
__esModule
: {
value
:
true
}, });