hyTags
HomeHome DocumentationDocumentation

bool-none

Returns `true` if all evaluated commands return `false`, otherwise `false`.
Parameter
Type
Description
commands
Commands
Commands to evaluate
return
bool
Result of logical NOR of all commands
Test Case:All false returns true
    <div></div>
    
    <bool-none>
      <bool-false>
      <bool-false>
    </bool-none>
    <assert-true>
    
    👆 Try to change something!
  • Test Case:One true returns false
      <div></div>
      
      <bool-none>
        <bool-false>
        <bool-true>
      </bool-none>
      <assert-false>
      
      👆 Try to change something!
    • Test succeeded Test failed