File "LogicalOperatorSpacingUnitTest.js.fixed"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Tests/WhiteSpace/LogicalOperatorSpacingUnitTest.js.fixed
File size: 239 bytes
MIME-type: text/plain
Charset: utf-8



if (foo || bar) {}
if (foo || bar && baz) {}
if (foo || bar && baz) {}
if (foo || bar && baz) {}

// Spacing after || below is ignored as it is EOL whitespace.
if (foo ||    
    bar
    && baz
) {
}

if (foo ||
    bar
    && baz
) {
}