Created
July 14, 2017 10:02
-
-
Save PartTimeLegend/3eb5dbeb2f13afbdb7b6261ce86e11bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function IIf($If, $IfTrue, $IfFalse) { | |
| If ($If) {If ($IfTrue -is "ScriptBlock") {&$IfTrue} Else {$IfTrue}} | |
| Else {If ($IfFalse -is "ScriptBlock") {&$IfFalse} Else {$IfFalse}} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment