@extra-boolean/not.min

Checks if value is false. 📦 NPM, 😺 GitHub, 🏃 RunKit, 🌔 Minified, 📜 Files, 📰 JSDoc, 📘 Wiki.

Usage no npm install needed!

<script type="module">
  import extraBooleanNotMin from 'https://cdn.skypack.dev/@extra-boolean/not.min';
</script>

README

Checks if value is false.
📦 NPM, 😺 GitHub, 🏃 RunKit, 🌔 Minified, 📜 Files, 📰 JSDoc, 📘 Wiki.

Similar: and, or, not, xor.

This is part of package extra-boolean.

This is browserified, minified version of @extra-boolean/not.
It is exported as global variable boolean_not.
CDN: unpkg, jsDelivr.


not(a)
// a: a boolean
const {not} = require("extra-boolean");

not(false);
// true

not(true);
// false


References