-
Notifications
You must be signed in to change notification settings - Fork 0
not
Subhajit Sahu edited this page Jul 19, 2022
·
15 revisions
Check if a boolean is false.
not(a)
// a: a boolean
const xboolean = require('extra-boolean');
xboolean.not(false);
// → true
xboolean.not(true);
// → false