not

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
3
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
688 B
A function that returns the `!
1 contributor
Install not as a package?
Copied
npm i @bit/justin-capalbo.ramda.not
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
not (
a:*
) : Boolean

A function that returns the ! of its argument. It will return true when passed false-y value, and false when passed a truth-y one.

Example
R.not(true); //=> false
     R.not(false); //=> true
     R.not(0); //=> true
     R.not(1); //=> false
Argument
a: *

any value

Returns
Boolean

the logical inverse of passed argument.

Help and resources