MustachePlaceholders/functions/toLower.ps1

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