MustachePlaceholders/functions/conditionals.ps1

Register-PlaceholderFunction "ifElse" {
    param($thisValue, $thenValue, $elseValue)
    if ([bool]$thisValue) { return $thenValue }
    return $elseValue
}