Initial commit

Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com>
Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com>
Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com>
Co-Authored-By: Michael Cartner <32543275+michaelcartner@users.noreply.github.com>
This commit is contained in:
Eric Tuvesson
2023-09-05 12:08:55 +02:00
commit 53f0d6320e
2704 changed files with 76354 additions and 0 deletions

38
nodes/logic/inverter.md Normal file
View File

@@ -0,0 +1,38 @@
---
hide_title: true
hide_table_of_contents: true
title: Inverter
---
<##head##>
# Inverter
This node changes <span className="ndl-data">true</span> values to be <span className="ndl-data">false</span>, and <span className="ndl-data">false</span> values to be <span className="ndl-data">true</span>. It is identical to a logic NOT operation.
<div className="ndl-image-with-background l">
![](/nodes/logic/inverter/inverter_node.png)
</div>
The <span className="ndl-node">Inverter</span> node runs JavaScript in the background and interprets truthy and falsy values in the same fashion. It is equal to creating an <span className="ndl-node">Expression</span> node with the expression `!value`.
<##head##>
## Inputs
| Data | Description |
| --------------------------------------- | -------------------- |
| <span className="ndl-data">Value</span> | The value to invert. |
## Outputs
| Data | Description |
| ---------------------------------------- | ------------------------------------------------------------------------------------ |
| <span className="ndl-data">Result</span> | The result of inverting the input _Value_. This is equal to either _True_ or _False_ |
## Advanced
The inverter is equal to creating the following expression:
`!value` .