nodeContextIsChainedIfElseIf


if() {
    // Does not match here (doesn't need to, as stuff inside of the if() is likely in context..)
} else if() {
    // Matches here
} else {
    // Matches here
}

Return

true, If this is an if inside of an if...