MustachePlaceholders/functions/toUpper.ps1

Register-PlaceholderFunction "toUpper" {
    param(
        [string] $thisValue
    )
    return $thisValue.ToUpper()
}